This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 8501. |
2 What is the output of C Program with Strings.?int main(){char str[]={'g','1','1', 'a','m'};printf("%s",str);return 0;}A.O-(216-1)B.O -(215-1)C. O -(215)D. O None |
| Answer» | |
| 8502. |
Find the missing element in the output matrix{int main()int a[3][3] = {{5, 2, 1), (3,4,7), (1,3,2}},t;for (int i = 0; i < 3; i = i + 1){for (int j = 0; j < 3; j = 1 + 1){for (int k = 1; k< 3; k = k+1){if (a[k][j] |
|
Answer» { for (int j = 0; j < 3; j = 3 + 1) for (int K = 1; k< 3; k=k+1) { if (a[k]li] PRINTF("%d", a[i][j]); t = alk-1101 alk - 1/01 = alk UT: a[kl] = t; printf("\N"); } } |
|
| 8504. |
2^40 is refferd as which byte |
|
Answer» Answer: 240 bytes Explanation: that which i LOVE |
|
| 8505. |
Evaluate the given Java expression:If int x=6, y=9, z; findz = (++x + ++y) * 2 + 25 % 3;pls give right answer |
| Answer» | |
| 8506. |
How can you create your own text Character..?? |
|
Answer» 1) Special excretory organs are ABSENT in UNICELLULAR ORGANISMS like amoeba. 2) Amoeba possesses osmoregulatory organelle called contractile vacuole. 3) It collects water and wastes from the body, swells up, REACHES the surface and bursts to release its content to outside. |
|
| 8507. |
(D) COMPLETE THE TABLE:(5)DESCRIPTIONS(a)(b) End the slide showKEYBOARD SHORTCUTS(a) Ctrl+ Home(b)(c) Number of the slide + Enter(d)(e) Ctrl+ End(d) Move to the next slide(9)ISWER THE FOLLOWING: |
| Answer» | |
| 8508. |
IT industry ভাগ গুলি লেখ |
|
Answer» Answer: Oblique Asymptote. An oblique or SLANT asymptote is an asymptote along a LINE , where . Oblique asymptotes occur when the DEGREE of the DENOMINATOR of a rational function is one less than the degree of the numerator. |
|
| 8509. |
Which of the following is called admin or inspector(a)operating system (b)processor (c)utilities (d)test editor |
|
Answer» processer Explanation: |
|
| 8510. |
Give the output of the followingint a= 5;a++;System.out.println(a),a- (a - -) (-a);System.out.println(a); |
|
Answer» Answer: 30 Explanation: a++=6 a-(a--) (-a) =6-(6)(-4)=6+24=30 |
|
| 8511. |
it is difficult to understand and interpret visual communication as to compared to other forms of communication. it is true or false |
|
Answer» It is true Explanation: It is true because it is DIFFICULT to understand and interpret visual COMMUNICATION as to compared to other FORMS of communication |
|
| 8512. |
Write one example against each generation of computers1. First ...2. Second ....3.Third ....4.Fourth ....5.Fifth.... |
|
Answer» Generation in computer TERMINOLOGY is a change in technology a computer is/was being USED. Initially, the generation term was used to distinguish between varying hardware technologies. NOWADAYS, generation INCLUDES both hardware and software, which together make up an entire computer system. |
|
| 8513. |
माइक्रोसॉफ्ट ऑफिस इस टाइप ऑफ |
|
Answer» Answer: |
|
| 8514. |
Function can be categorised into – categories |
|
Answer» Answer: Types of User-defined FUNCTIONS in C++ Function with no ARGUMENT and no RETURN VALUE. Function with no argument but return value. Function with argument but no return value. Function with argument and return value. |
|
| 8515. |
Write a program in python to print first ten natural number |
|
Answer» Answer: PYTHON program to display NATURAL numbers from 1 to n #print 1 to n natural number. #using for loop. num=int(INPUT("PLEASE enter maxinmum number: ")) ... #Python program to print natural number fro 1 to n. #using while loop. num=int(input("Enter maximum Natural number: ")) ... #print 1 to n natural number. #using FUNCTION. num=int(input("Please enter maxinmum number: ")) |
|
| 8516. |
ਵਿੰਡੋਜ ਐਕਸਪਲੋਹ ਦੇ ਭਾਗਾਂ ਦੀ ਸੂਚੀपाठिਦੇਉਤੱਰ |
| Answer» | |
| 8517. |
What is a light pen?A Mechanical input deviceOptical input deviceElectronic input device |
|
Answer» A light PEN is a computer input device in the form of a light-sensitive wand used in conjunction with a computer's cathode-ray tube (CRT) display. It allows the user to point to DISPLAYED OBJECTS or draw on the screen in a SIMILAR way to a touchscreen but with greater positional accuracy. |
|
| 8518. |
Media and technology historyessay |
|
Answer» didn't UNDERSTAND the QUESTION |
|
| 8519. |
List and explain features of oops |
|
Answer» Association Aggregation Owner No owner SINGLE owner Life time Have their own LIFETIME Have their own lifetime Child object Child objects all are independent Child objects belong to a single parent |
|
| 8520. |
Pseudocode to design a simple calculator |
|
Answer» Many COMPUTER languages share common TASKS such as iterating through loops, BRANCHING based on if-then-else logic and PERFORMING calculations. |
|
| 8521. |
2) Self Management से आप क्या समझते हो ? it class 10 |
| Answer» | |
| 8522. |
Tags that are used to change the appearance of text are also known as _______ . |
|
Answer» DOCUMENT FORMATTING TAGS is the answer DEAR |
|
| 8523. |
The command to freeze some rows/column is found on ............ menu |
|
Answer» Answer: To freeze COLUMNS: On the VIEW tab, select the Freeze Panes COMMAND, then choose Freeze Panes from the drop-down MENU. The column will be frozen in PLACE, as indicated by the gray line. You can scroll across the worksheet while continuing to view the frozen column on the left. Explanation: |
|
| 8524. |
Write a python program that takes your full name as input and displays the abbreviations of the first and middle names except the last name which is displaye For example, if your name is Robert Brett Roser, then the output should be R.B.Roser. |
|
Answer» MARK me as BRAINLIEST I will ALSO mark you |
|
| 8526. |
22.What is the background color of web browsers for secure sites? |
| Answer» | |
| 8527. |
Write a program to find the greatest number among three numbers using a function named greatest_number? |
|
Answer» from random IMPORT randrange def greatest_number(nums): max_num = nums[0] for n in nums: if max_num < n: max_num = n return max_num nums = [randrange(1, 69) for n in RANGE(3)] PRINT(greatest_number(nums))
|
|
| 8528. |
Given a Pandas series called sequences , the commamd which displays last 5rowsprint(sequences.Tail(5))print (sequences.head())print(sequences.tail(5))print (sequence.tail()) |
|
Answer» HI....... Explanation: Hope it helps you....... |
|
| 8529. |
One gb is equivalent to a.1024 KB b.2024MB c.1024TB d.1024PB |
|
Answer» Answer: 2024MB Explanation: |
|
| 8530. |
Full form of JPEG in computer |
|
Answer» Answer: Just PEG Energy Going.... lol |
|
| 8531. |
29.Write any two indicators of secure website? |
|
Answer» Before you share any information online, it’s important to make sure the website is secure. Fortunately, there are two quick checks to help you be certain. LOOK at the uniform resource locator (URL) of the website. A secure URL should begin with “https” rather than “http.” The “s” in “https” stands for secure, which indicates that the site is using a Secure Sockets Layer (SSL) CERTIFICATE. This lets you know that all your data is encrypted as it passes from your BROWSER to the website’s server. Look for a lock icon NEAR your browser’s location field. Because securing websites via SSL has become more the norm than the exception, it is now more common for web browsers to highlight insecure sites than secure ones. If a site isn’t secure, you may see a lock icon with a strike through it, or a text message reading “Not secure.” Remember to look for “https” and the lock icon. If you don’t see those two indicators, the website is not secure. For more security tips visit UW–Madison Office of Cybersecurity. While making sure the sites you visit are secure is important, you should also always be sure that a site is legitimate before entering a username, password or any other personal information. Paying close attention to the site’s URL in your browser’s location field, for example, can help you be certain that you’re on a legitimate site rather than a look-alike imposter. |
|
| 8533. |
State the inputs and outputs of rule based approach to Ai.plz give the correct ans |
|
Answer» hfhfhfhhddhdhdhdhdhxxhxhhxxhhxhxdhhdhdndjdjdjdjdjdjdndnf |
|
| 8534. |
What is the role of digital to analog converter (DAC)? Where it is placed in video displaydevices? |
|
Answer» Answer: SIMPLY put, DACs are a necessary step in translating the ones and zeroes in your computer to video, audio, and other sensory DATA that you can perceive. In some instances, they can also TRANSLATE digital INSTRUCTIONS to physical objects, allowing users to control mechanical devices digitally. Explanation: hope this answer helps u mark me as a brainiliest follow me |
|
| 8535. |
_______________________ is used to move a paragraph or the first line, a specific number of places from the left or right margin. |
|
Answer» Explanation: Use tabs, not spaces, to move text to a SPECIFIC position in a LINE. Use a First Line INDENT, not a TAB, when you want to indent the first line of a paragraph. Do not FORCE lines to break by entering tab characters (or multiple tab characters) at the end of a line! I hope this answer will help you... |
|
| 8536. |
Define Scanner. plzzzzzzzzzzzzzzzzzzzzzzzzzz,zzzzzzzzzzzzzzzzzzzzzzzzzzz |
|
Answer» A SCANNER is an input DEVICE that scans documents such as photographs and PAGES of text Explanation: hope you UNDERSTAND |
|
| 8537. |
Prepare the test plan for any food delivery application with test cases |
|
Answer» In any case, before the DISPATCH of an application, it is SHREWD to CHECK whether the application is CAPABLE in ... |
|
| 8538. |
Functions of basic input and output systems |
|
Answer» hvkigyuyvtutuuuj vhkn |
|
| 8539. |
The combination of analog computers and digital computers is called hybrid computer true or false |
|
Answer» Answer: TRUE Explanation: the combination of ANALOG computers and digital computers is called hybrid computer. ANS- true Hybrid computers are computers that exhibit features of analog computers and digital computers. The digital component normally serves as the controller and provides LOGICAL and numerical operations, while the analog component often serves as a SOLVER of differential equations and other MATHEMATICALLY complex equations. |
|
| 8540. |
Fill in the blanks1.The _ attribute of the body tag used to change the background. |
| Answer» BG COLOR HAI BHAI ANSWER | |
| 8541. |
Fill in the banks1.A collection of related weld pages form_ |
|
Answer» Pressure may ALSO be used in conjunction with HEAT or by itself to produce a weld. Welding also REQUIRES a form of SHIELD to protect the filler metals or melted metals |
|
| 8542. |
Please answer this question Define the class Number as per the following specifications:Class NameNumberData Membersint nTo store an integer valueMember FunctionsNumber() Constructor to store 0 innint reverse() Returns the reverse of the number nvoid palPrime() Checks and prints if the number is PalPrime or notA number is said to be PalPrime if it is Prime as well as PalindromeNumber 131 is prime as well as palindrome.Write a suitable main |
Answer» ANSWERHuman reproduction is any form of SEXUAL reproduction RESULTING in human fertilization. It typically involves sexual INTERCOURSE between a man and a woman. During sexual intercourse, the interaction between the male and FEMALE reproductive SYSTEMS results in fertilization of the woman's ovum by the man's sperm. |
|
| 8543. |
Stale whether the following statements are 'true 'or false1. There are six different levels of header tag. |
Answer» your ANSWER is TRUE......... |
|
| 8544. |
Why external respiration is known as the breathing. |
|
Answer» Answer: GAS exchange in the lungs is REFERRED to as external respiration as one SIDE of the respiratory membrane - that is, the alveolar AIR - is actually outside of the body. As blood flows through the pulmonary capillaries, oxygen diffuses into the blood and carbon DIOXIDE diffuses into the alveolar gas. Explanation: please mark me as brainliest |
|
| 8545. |
Differentiate between Arithmetic, Relational and Logical operators. |
|
Answer» Answer: Explanation: Arithmetic OPERATORS are used to perform mathematical operations. Relational operators are used to perform comparison operations. Logical operators are used to perform basic OPERATION of boolean algebra ('AND', 'OR', and 'NOT'). Bitwise operators are used to perform bit wise MANIPULATION on OPERANDS |
|
| 8546. |
[Open office calc]1. What is macro?2. Write the syntax to define a macro as a function?3. Which library loads in Calc, by default? (Standard Library is loaded bydefault)4. How do you turn on the Macro Recorder Tool in Calc? |
|
Answer» Explanation: 1- Monsoon Asia” is an Asia region under monsoon CLIMATE, which has rice farming as a BASIS for food production. Agriculture in the Monsoon Asia is very diverse from NORTH to south, while the monsoon Asian COUNTRIES are all characterized by high biodiversity around rice fields. |
|
| 8547. |
Define extra certain skills |
|
Answer» Answer: Extra CERTAIN SKILLS are the skills which you will need to PUT it in your resume. These skills INCLUDE Computer skills Leadership Active LISTENING A good speaker, etc. |
|
| 8548. |
In the current Covid-19 situation, for the Online Examination System you are required todevelop an application. That application will calculate the GPA and grade obtained in eachcourse. Which software process you would suggest and why? Justify your answer in detailand draw the suggested model. |
|
Answer» yi 3li6O7i64o7rp7tjjhhghh |
|
| 8549. |
True or falseCloud computing provides limited space to store information |
|
Answer» Answer: True Explanation: cloud computation company charges for EVERY 10gb of data stored so, it can't be UNLIMITED as the company ALSO has to somehow STORE the data in their SERVERS and servers are not of unlimited storage. Hope it helped you. If yes then please mark me as brainliest |
|
| 8550. |
To be a successful computer systems engineer, you must be proficient in programming languages and operating systems. Similarly, to be a good animator, you must have good knowledge of the principles of animation. Identify the different skill requirements for computer professionals. Collectively, skills like the ones listed above are skills. These skills refer to the . However, skills are also important, because they relate to the ability to interact and communicate effectively with people. |
|
Answer» Answer: 100% CORRECT.. THANKS FOR INFORMATION |
|