This section includes 7 InterviewSolutions, each offering curated multiple-choice questions to sharpen your Current Affairs knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
Pick the odd man out. (AND, OR, NAND, NOT) |
|
Answer» Answer is NOT |
|
| 2. |
This spray will keep ______ the bugs. A) away B) off C) on |
|
Answer» Correct option is A) away |
|
| 3. |
What Vegetable?___ are loved by Bugs Bunny and are good for your eye |
|
Answer» Correct answer is Carrots |
|
| 4. |
Write a short note on Unicode. |
|
Answer» It is like ASCII Code. By using ASCII, we- can represent limited number of characters. But using Unicode we can represent all of the characters used in the written languages of the world. Eg:- Malayalam, Hindi, Sanskrit,…. |
|
| 5. |
Fill up the missing digit. If (128)a = (450)b then (16)a = ( )10 |
|||||||||
|
Answer» L.H.S. contains 2 & 8, so a 2 and a ≠ 8. R.H.S. contains 4 and 5, so b ≠ 2. L.H.S. < R.H.S. so a > b and a ≠ b also. The possible values of a and b are given below.
Case I: a = 16 and b = 8 (128)16 = (296)10 (450)8 = (296)10 So, a = 16 and b = 8. Then (16) = 1 × 16 + 6 × 160 = (22)10 |
||||||||||
| 6. |
A computer has no ...........(a) Memory (b) l/o device(c) CPU (d) IQ |
|
Answer» A computer has no IQ |
|
| 7. |
Fill in the blanks:1. (0.625)10 = (……….)2 2. (380)10 = (……..)16 3. (437)8 = (………)2 |
|
Answer» 1. (0.101)2 2. (17C)16 3. (100 011 111)2 |
|
| 8. |
Finding of Bugs and Fixing them happens in _____ a. Design Phase b. Testing Phase c. Implementation Phase d. Reuirement Definition Phase |
|
Answer» Finding of Bugs and Fixing them happens in Testing Phase. |
|
| 9. |
1 KB is bytes. (a) 25(b) 210(c) 215(d) 220 |
|
Answer» 1 KB is bytes 210 |
|
| 10. |
The base of hexadecimal number system is ............ Hexadecimal number system . |
|
Answer» The base of hexadecimal number system is 16 Hexadecimal number system . |
|
| 11. |
Choose the correct sequence to be followed while buying online. a. Provide your details (Or login into your bank account) b. Add items in shopping cart c. Choose payment option (Make payment if not cash on delivery) d. Select Buy optioni. c,d,b,a ii. b,d,c,a iii. d,b,c,a iv. a,c,b,d |
|
Answer» Correct option: ii. b,d,c,a |
|
| 12. |
Convert (1110.01011)2 to decimal. |
|
Answer» 1110.01011 = 1 × 23 + 1 × 22 + 1 × 21 + 0 × 20 + 0 × 2 – 1 + 1 × 2 – 2 + 0 × 2 – 3 + 1 × 2 – 4 + 1 × 2 – 5 = 8 + 4 + 2 + 0 + 0 + 0.25 + 0 + 0.0625 + 0.03125 = (14.34375)10 |
|
| 13. |
Base of Hexadecimal system is _______.1. 22. 103. 164. 32 |
|
Answer» Correct Answer - Option 3 : 16 The correct answer is 16.
|
|
| 14. |
Predict the output of the following expression of the initial value of x is 5.x=((++x)*2)+7a. 19 b. 21 c. 18 d. 20 |
|
Answer» Correct option: a. 19 |
|
| 15. |
List any four advantages of DBMS. |
|
Answer» Following are the advantages: 1. Reduction in Redundancy 2. Improved Consistency 3. Improved Availability 4. Improved Security 5. User Friendly |
|
| 16. |
MSD is ....... |
|
Answer» Most Significant Digit |
|
| 17. |
The base of Hexadecimal number system is ......... |
|
Answer» The base of Hexadecimal number system is 16. |
|
| 18. |
Consider the octal number given below and fill in the blanks.0, 1,2, 3, 4, 5,6, 7, _ |
|
Answer» Answer is 10 |
|
| 19. |
Mr. Geo purchased (10)2 kg sugar @Rs. (110 10)2 and (1010)2 kg Rice @Rs. (10100)2 . So how much rupees he has to pay in decimal. |
|
Answer» Convert each into decimal number system multiply and sum it up. (10)2 = (2)10 (11010)2 = 1 × 24 + 1 × 23 + 0 × 22 + 1 × 21 + 0×21 = 16 +8 + 0 +2 + 0 = (26)10 (1010)2 = 1 × 23 + 0 × 22 + 1 × 21 +0 × 20 = 8 + 0 + 2 + 0 = (10)2 (10100)2 = 1 × 24 + 0 × 23 + 1 × 22 +0 × 21 + 0×20 = 16 + 0 + 4 + 0 + 0 = (20)2 therfore 2 × 26 + 10 × 20 = 52 + 200 = 252 So Mr. Geo has to pay Rs. 252/- |
|
| 20. |
Real numbers can be represented in memory by using ............ |
|
Answer» Exponent and Mantissa |
|
| 21. |
Illustrate any two DML commands with the help of suitable example. |
|
Answer» Insert command is used to insert/add a tuple in a table. Example: INSERT INTO Student VALUES (101,"Ananya", "Grover", 'F', '1984-08-11', 1); DELETE FROM Student WHERE admno=101; |
|
| 22. |
The base of decimal number system is ....... |
|
Answer» The base of decimal number system is 10 |
|
| 23. |
Pick the one which is not a Basic Gate. (AND, OR, XOR, NOT) |
|
Answer» XOR is not a Basic Gate |
|
| 24. |
Explain different types of constructors. |
|
Answer» There are three types of constructors.
1. Default Constructor: Features of default constructor are:
The disadvantages of default constructor are:
2. parameterized constructor: The features of parameterized constructors are :
The different methods through which constructors can be invoked are implicit call and explicit call and using operator. a. Explicit call: b. Implicit Call: 3. Copy Constructor: |
|
| 25. |
Consider the octal number given below and fill in the blanks.0, 1, 2, 3, 4, 5, 6, 7, ........... |
|
Answer» 0, 1, 2, 3, 4, 5, 6, 7, 10 |
|
| 26. |
Characters can be represented in memory by using ....... |
|
Answer» Characters can be represented in memory by using ASCII Code. |
|
| 27. |
The number of numerals or symbols used in a number system is its .......... |
|
Answer» The number of numerals or symbols used in a number system is its Base |
|
| 28. |
Explain DML commands with example. |
|
Answer» The data manipulation commands are used for retrieval (view) of data, insertion of new data, modification of data or deletion. The DML commands include insert, delete and update. 1. INSERT command : 2. UPDATE command: 3. DELETE Command : |
|
| 29. |
The algebra used to solve problems in digital systems is called .......... |
|
Answer» Boolean Algebra |
|
| 30. |
The base of octal number system is ........ |
|
Answer» The base of octal number system is 8. |
|
| 31. |
State True or False.In Binary, the unit bit changes either from 0 to 1 or 1 to 0 with each count. |
|
Answer» The statement is True |
|
| 32. |
ASCII Code of A’ is ...... |
|
Answer» (100 0001)2 = 65 |
|
| 33. |
Find the largest number in the list. 1. (1001)2 2. (A)16 3. (10)8 4. (11)10 |
|
Answer» Convert all numbers into decimal 1. (1001)2 = 1 × 23 + 0 × 22 + 0 × 22 + 1 × 20 = 8 + 0 + 0 + 1 = (9)10 2. (A)16 = (10)10 3. (10) = 1 × 81 +0 × 80 = (8)10 So the largest number is 4 . (11)10 |
|
| 34. |
What are the two basic types of data which are stored and processed by computers? |
|
Answer» Characters and number |
|
| 35. |
ASCII Code of ’a’ is ...... |
|
Answer» (110 0001)2 = 97 |
|
| 36. |
There is a memory inside the CPU. What is its name? Write down its purpose In the computer. |
|
Answer» It stores data, intermediate results, Address, instructions etc for CPU to process temporarily. |
|
| 37. |
What is the relation between the following statements. x + 0 = x and x . 1 = x |
|
Answer» One is the dual of the other expression. |
|
| 38. |
State True or False. In Binary, the unit bit changes either from 0 to 1 or 1 to 0 with each count. |
|
Answer» In Binary, the unit bit changes either from 0 to 1 or 1 to 0 with each count. True |
|
| 39. |
Odd man out and justify your answer.(a) Adeline (b) 12 (3) 17 (d) Adeline aged 17 years is in class 12. |
|
Answer» d) This is information. The others are data. |
|
| 40. |
Complete the Series. 1. (101)2 , (111)2 , (1001)2 , ………. 2. (1011)2 , (1110)2 , (10001)2 , ……… |
|
Answer» 1. 1011, 1101 2. 10101, 10111 |
|
| 41. |
ASCII stands for ......... |
|
Answer» American Standard Code for Information Interchange |
|
| 42. |
Storage of data, capturing of data, processing of data, input of data, and output of data are the different stages in data processing. Write these stages in correct order? |
|
Answer» 1) Capturing of data 2) Input of data 3) Storage of data 4) Processing of data 5) Output of data |
|
| 43. |
NOT gate is also known as ........ |
|
Answer» NOT gate is also known as Inverter |
|
| 44. |
List any two image file formats. |
|
Answer» BMP, GIF are two image file formats. |
|
| 45. |
The only function of a NOT gate is ......... |
|
Answer» Invert an output signal |
|
| 46. |
Differentiate manual data processing and electronic data processing? |
|
Answer» In manual data processing human beings are the processors. Our eyes and ears are input devices. We get data either from a printed paper, that can be read using our eyes or heard with ears. Our brain is the processor and it can process the data, and reach in a conclusion known as result. Our mouth and hands are output devices. In electronic data processing the data is processing with the help of a computer. In a super market, key board and hand held scanners are used to in. put data, the CPU process the data, monitor and printers (Bill) are output devices. |
|
| 47. |
The act of applying information in a particular con-text or situation is called ........... |
|
Answer» The act of applying information in a particular con-text or situation is called Knowledge |
|
| 48. |
.......... is used to help people to make decision. |
|
Answer» Information is used to help people to make decision. |
|
| 49. |
Name the operator which performs logical multiplication. |
|
Answer» The operator which performs logical multiplication is AND. |
|
| 50. |
Specify the laws applied in the following cases. 1. a (b + c) = ab + ac 2. (a + b) + c = a + (b + c) |
|
Answer» 1. Distribution law 2. Associative law |
|