Powered By Blogger

मंगलवार, 9 नवंबर 2021

This set of Computer Fundamentals Multiple Choice Questions & Answers (MCQs) focuses on “The Binary Number System”.

 This set of Computer Fundamentals Multiple Choice Questions & Answers (MCQs) focuses on “The Binary Number System”.

Q. 1. Which of the following is not a positional number system?

   (1) Roman Number System

   (2) Octal Number System

   (3) Binary Number System

   (4) Hexadecimal Number System

----

Answer: (1)

Explanation: The Roman number system isn’t a positional number system since , it uses symbols to represent numbers.

The octal number system uses digits from 0-7 , the binary number system uses digits from 0-1 whereas, the hexadecimal number system uses digits from 0-15.

Q. 2. The value of radix in binary number system is _____________

   (1) 2

   (2) 8

   (3) 10

   (4) 1

----

Answer: (1)

Explanation: In a binary number system, the value of base or radix is 2. The binary system uses only two digits for the representation of numbers, therefore its base id chosen to be 2.

Q. 3. The binary equivalent of the decimal number 10 is __________

   (1) 0010

   (2) 10

   (3) 1010

   (4) 010

----

Answer: (3)

Explanation: To get the binary equivalent of any number, we need to divide the number by 2 and obtain the remainders as :

We then write the remainders in the reverse order as 1010 .

Q. 4. A computer language that is written in binary codes only is _____

   (1) machine language

   (2) C

   (3) C#

   (4) pascal

----

Answer: (1)

Explanation: Machine Language is written in binary codes only . It can be easily understood by the computer and is very difficult for us to understand. A machine language , unlike other languages requires no translators or interpreters.

Q. 5. The octal equivalent of 1100101.001010 is ______

   (1) 624.12

   (2) 145.12

   (3) 154.12

   (4) 145.21

----

Answer: (2)

Explanation: The octal equivalent is obtained by grouping the numbers into three, from right to left before decimal and from right to left after the decimal place.

Here,

i.e. 145.12 is the octal equivalent of the number.

Q. 6. The input hexadecimal representation of 1110 is _______________

   (1) 0111

   (2) E

   (3) 15

   (4) 14

----

Answer: (2)

Explanation: In hexadecimal number system, 1110 = 15, which is represented by the alphabet E.

Some representations are:

A 10

B 11

C 12

D 13

E 14

F 15.

Q. 7. A bit in a computer terminology means either 0 or 1.

   (1) True

   (2) False

----

Answer: (1)

Explanation: A bit stands for a binary digit. A binary digit can have only two digits i.e. 0 or 1. A binary number consisting of n-bits is called a n-bit number.

Q. 8. Convert the binary equivalent 10101 to its decimal equivalent.

   (1) 21

   (2) 12

   (3) 22

   (4) 31

----

Answer: (1)

Explanation: To convert a binary number to its decimal equivalent follow these steps :

2

4 * 1 + 23 * 0 + 22 *1 + 21 * 0 + 20 * 1 = 21.

Therefore, the answer is 21.

Q. 9. Which of the following is not a binary number?

   (1) 1111

   (2) 101

   (3) 11E

   (4) 000

----

Answer: (3)

Explanation: A binary number can have only two possible digits, 0 and 1. In the third option, there is an alphabet E present which makes it an invalid binary number. Alphabets are only allowed in hexadecimal number system.

Q. 10. Which of the following is the correct representation of a binary number?

   (1) (124)2

   (2) 1110

   (3) (110)2

   (4) (000)2

----

Answer: (4)

Explanation: The binary numbers should comprise only two digits 0 and 1.

Also, for the base, the value should be 2 and it should be written as a subscript enclosing the entire number. Here, the fourth option gives the correct representation.

इनपुट यूनिट पर केंद्रित प्रश्न

Join

https://t.me/patwaribharti2021


शनिवार, 6 नवंबर 2021

Set of Computer Fundamentals Interview Questions and Answers for freshers focuses on “The Decimal Number System”.

 This set of Computer Fundamentals Interview Questions and Answers for freshers focuses on “The Decimal Number System”.

Q. 1. The value of base in a decimal number system is ____________

      (1) 8

      (2) 2

      (3) 10

      (4) 16

----

Answer: (3)

Explanation: A decimal number system consists of 10 digits from 0 to 9. The definition of base describes it as a quantity to represent the number of digits present in that particular number system.

Therefore, here, the base is 10.

Q. 2. Convert : (110)2 = ( __ )10 .

      (1) 4

      (2) 5

      (3) 6

      (4) 9

----

Answer: (3)

Explanation: The base 2 represents that the number is binary ,whereas, the base 10 represents that it is to be converted to the decimal format.

Conversion: 22 * 1 + 21 * 1 + 20 *0 = 6.

Q. 3. The 2’s complement of 15 is ____________

      (1) 0000

      (2) 0001

      (3) 0010

      (4) 0100

----

Answer: (2)

Explanation: 2’s complement is obtained by adding 1 to the 1’s complement of the number.

Here, Binary of 15 = 1111

1’s complement of 15= 0000

2’s complement of 15= 0000+1=0001.

Q. 4. Another name for base is __________

      (1) root

      (2) radix

      (3) entity

      (4) median

----

Answer: (2)

Explanation: Another name for base is radix. Base refers to the number of digits that a particular number system consists of.

The base of decimal number system is 10 , binary is 2 and so on.

Q. 5. The decimal equivalent of (0.101)2 will be ____________

      (1) 0.5

      (2) 0.625

      (3) 0.25

      (4) 0.875

----

Answer: (2)

Explanation: Since the base is 2 , it could be easily guessed that the number is binary. Conversion: 2-1 * 1 + 2-2 * 0 + 2-3 * 1 = 0.625.

Q. 6.The signed magnitude for -3 will be ___________

      (1) 00000011

      (2) 10000011

      (3) 11111101

      (4) 11111100

Answer: (2)

Explanation: Signed Magnitude of a number is a representation to determine if the number is positive or negative.

If the MSB of a number is 0 , the number is positive , else if it is 1 the number is negative.

Here, +3 = 00000011

-3= 100000011. 

Q. 7. A number with both integer and a fractional part has digits raised to both positive and negative powers of 2 in a decimal number system.

      (1) True

      (2) False

----

Answer: (2)

Explanation: In a decimal number system, a number with both integer and a fractional part has digits raised to both positive and negative powers of 10 and not 2.

e.g. 22.34 = 2 * 101 + 2 * 100 + 3 * 10-1 + 4 * 10-2

Q. 8. The hexadecimal representation of 14 is _______________

      (1) A

      (2) F

      (3) D

      (4) E

----

Answer: (4)

Explanation: The hexadecimal representations are as follows:

10 : A

11 : B

12 : C

13 : D

14 : E

15 : F.

Q. 9. Which of the following is not a decimal number?

      (1) 114

      (2) 43.47

      (3) 99.9A

      (4) 10101

----

Answer: (3)

Explanation: All the numbers except 99.9A are decimal numbers.

This number has a hexadecimal component A in it therefore, it is not a valid decimal number.

The decimal equivalent of A is 10.

Q. 10. Select the incorrect option :

    (1) (101)10 = (1100101)2

    (2) G is valid in hexadecimal system.

    (3) C represents 12

    (4) The base of a decimal number system is 10.

----

Answer: (2)

Explanation: G is not a valid hexadecimal number. In this system , only representations from A to E are used to represent the numbers from 10 to 15. 

The base of the hexadecimal number system is 16

इनपुट यूनिट पर केंद्रित प्रश्न

शुक्रवार, 5 नवंबर 2021

Set of Computer Fundamentals Multiple Choice Questions & Answers (MCQs) focuses on “The Control Unit”.

 This set of Computer Fundamentals Multiple Choice Questions & Answers (MCQs) focuses on “The Control Unit”.

Q. 1. ____________ is the raw material used as input and __________ is the processed data obtained as output of data processing.

   (1) Data, Instructions

   (2) Instructions, Program

   (3) Data, Program

   (4) Program, Code

----

Answer: (1)

Explanation: Data can be assumed as a raw material which , in turns after processing gives the desired output in the form of instructions. Further, a set of ordered and meaningful instructions is known as a program.

Q. 2. Which of the following is not a characteristic of a computer?

   (1) Diligence

   (2) I.Q.

   (3) Accuracy

   (4) Versatility

----

Answer: (2)

Explanation: The Computer system has no I.Q. of its own. It does only what it is programmed to do. It cannot take decisions of its own. A computer is diligent, because it can work continuously for hours without getting any errors or without getting grumbled.

Accuracy of a computer is consistently high and its level of accuracy depends on its design. A computer can perform any task if, it can be broken down into a series of logical steps. Therefore, a computer is versatile.

Q. 3. Fill in the blank in the diagram.

   (1) Input Unit

   (2) Memory Unit

   (3) Control Unit

   (4) I/O Unit

----

Answer: (3)

Explanation: The control unit manages and coordinates the operations of a computer system. The ALU is responsible for performing all the arithmetic and bitwise operations . Therefore, both these units combine to form the brain of the computer ,which is the central processing unit.

Q. 4. The part of a processor which contains hardware necessary to perform all the operations required by a computer:

   (1) Data path

   (2) Controller

   (3) Registers

   (4) Cache

----

Answer: (1)

Explanation: A processor is a part of the computer which does all the data manipulation and decision making. A processor comprises of: A data path which contains the hardware necessary to perform all the operations. A controller tells the data path what needs to be done. The registers act as intermediate storage for the data.

Q. 5. What does MAR stand for?

   (1) Main Address Register

   (2) Memory Access Register

   (3) Main Accessible Register

   (4) Memory Address Register

----

Answer: (4)

Explanation: MAR is a type of register which is responsible for the fetch operation. MAR is connected to the address bus and it specifies the address for the read and write operations.

Q. 6. If the control signals are generated by combinational logic, then they are generated by a type of _______________ controlled unit.

   (1) Micro programmed

   (2) Software

   (3) Logic

   (4) Hardwired

----

Answer: (4)

Explanation: The main task of a control unit is to generate control signals. There are two main types of control units: A hardwired control unit generates control signals by using combinational logic circuits and the Micro programmed control unit generates control signals by using some softwares.

Q. 7. Which is the simplest method of implementing hardwired control unit?

   (1) State Table Method

   (2) Delay Element Method

   (3) Sequence Counter Method

   (4) Using Circuits

----

Answer: (1)

Explanation: There are 3 ways of implementing hardwired control unit: A state table is the simplest method in which a number of circuits are designed based on the cells in the table. A delay element method consists of a flowchart drawn for the circuit. A D-flip flop is used as a delay element. A sequence counter method used k-modulo counter as a replacement for k delay elements.

Q. 8. A set of microinstructions for a single machine instruction is called  ___________

   (1) Program

   (2) Command

   (3) Micro program

   (4) Micro command

----

Answer: (3)

Explanation: For every micro-operation, a set of microinstructions are written which indicate the control signals to be activated. A set of microinstructions is a micro program. The address of the next microinstruction is given by a Micro-program counter.

Q. 9. Micro-program consists of a set of microinstructions which are strings of 0s and 1s.

   (1) True

   (2) False

----

Answer: (1)

Explanation: The computer understands only binary language. So, the micro-program should have instructions which are in the form of 0s and 1s. Each output line of the micro-program corresponds to one control signal.

Q. 10. A decoder is required in case of a ______________

   (1) Vertical Microinstruction

   (2) Horizontal Microinstruction

   (3) Multilevel Microinstruction

   (4) All types of microinstructions

Answer: (1)

Explanation: There are two types of microinstructions: Horizontal and Vertical. In a horizontal microinstruction, each bit represents a signal to be activated whereas, in case of a vertical microinstruction bits are decoded and, the decoder then produces signals

Join Telegram Group

https://t.me/patwaribharti2021

इनपुट यूनिट पर केंद्रित प्रश्न

Set of Computer Fundamentals Multiple Choice Questions & Answers (MCQs) focuses on “The Arithmetic & Logic Unit”.

 This set of Computer Fundamentals Multiple Choice Questions & Answers (MCQs) focuses on “The Arithmetic & Logic Unit”.

Q. 1. The ‘heart’ of the processor which performs many different operations _____________

   (1) Arithmetic and logic unit

   (2) Motherboard

   (3) Control Unit

   (4) Memory

----

Answer: (1)

Explanation: The Arithmetic and logic unit performs all the basic operations of the computer system. It performs all the arithmetic(+,-,*,/,etc) as well as the logical operations( AND, OR, NOT, etc.).

Q. 2. ALU is the place where the actual executions of instructions take place during processing operation.

   (1) True

   (2) False

----

Q. 3. Which of the following is not a bitwise operator?

   (1) |

   (2) ^

   (3) .

   (4) <<

----

Answer: (3)

Explanation: All except the dot(.) operator are bitwise operators.

| : Bitwise OR

^ : Bitwise XOR

<< : Shift Left 

Q. 4. The sign magnitude representation of -1 is __________

   (1) 0001

   (2) 1110

   (3) 1000

   (4) 1001

----

Answer: (4)

Explanation: The first leftmost bit i.e. the most significant bit in the sign magnitude represents if the number is positive or negative. If the MSB is 1, the number is negative else if it is 0, the number is positive. Here, +1=0001 and for -

1=1001.

5. IEEE stands for ___________

   (1) Instantaneous Electrical Engineering

   (2) Institute of Emerging Electrical Engineers

   (3) Institute of Emerging Electronic Engineers

   (4) Institute of Electrical and electronics engineers

----

Answer: (4)

Explanation: The IEEE is an organization of professionals in the field of electronics and electrical engineering. IEEE has given certain standards of its own which are followed in the field of computer science and electrical engineering.

Q. 6. The ALU gives the output of the operations and the output is stored in the  ________

   (1) Memory Devices

   (2) Registers

   (3) Flags

   (4) Output Unit

----

Answer: (2)

Explanation: Any output generated by the ALU gets stored in the registers. The registers are the temporary memory locations within the processor that are connected by signal paths to the CPU.

Q. 7. The process of division on memory spaces is called ______________

   (1) Paging

   (2) Segmentation

   (3) Bifurcation

   (4) Dynamic Division

----

Answer: (2)

Explanation: The memory space is divided into segments of dynamic size. The programmer is aware of the segmentation and can reallocate the segments accordingly.

Q. 8. Number of bits in ALU is _________

   (1) 4

   (2) 8

   (3) 16

   (4) 2

----

Answer: (3)

Explanation: Arithmetic and Logic Unit consists of 16bits. They perform certain Arithmetic and bitwise operations (add, subtract, AND, OR, XOR, Increment, decrement, shift).

Q. 9. Which flag indicates the number of 1 bit that results from an operation?

   (1) Zero

   (2) Parity

   (3) Auxiliary

   (4) Carry

----

Answer: (2)

Explanation: The parity flag indicates the number of 1 bits in any operation. The resultant bit is called the parity bit. The main aim of the parity bit is to check for errors.

Q. 10. The bitwise complement of 0 is ___________

   (1) 00000001

   (2) 10000000

   (3) 11111111

   (4) 11111110

----

Answer: (3)

Explanation: Bitwise complement is basically used to convert all the 0 digits to 1 and the 1s to 0s. So, for 0 = 00000000(in 8-bits) ::: 11111111(1s complement). The bitwise complement is often referred to as the 1s complement

Join Telegram Group

कम्प्यूटर अनुदेशक भर्ती परीक्षा 2021

https://t.me/patwaribharti2021

इनपुट यूनिट पर केंद्रित प्रश्न

बुधवार, 3 नवंबर 2021

Set of Computer Fundamentals Multiple Choice Questions & Answers (MCQs) focuses on “The Storage Unit”.

 This set of Computer Fundamentals Multiple Choice Questions & Answers (MCQs) focuses on “The Storage Unit”.

Q. 1. Components that provide internal storage to the CPU are ______

   (1) Registers

   (2) Program Counters

   (3) Controllers

   (4) Internal chips

----

Answer: (1)

Explanation: The Registers are the fast storage units. They are responsible for storing intermediate computational results in the CPU. The registers can be user accessible or inaccessible.

Q. 2. Saving data and instructions to make them readily available is the job of __________

   (1) Storage Unit

   (2) Cache Unit

   (3) Input Unit

   (4) Output Unit

----

Answer: (1)

Explanation: The storage unit is responsible for storing the data. It makes the instructions readily available for additional or initial processing whenever required. The cache is a software component that stores data to serve the data requests in future. It can contain the result of some earlier computations.

Q. 3. The two basic types of memory in a computer are ________

   (1) Primary and major

   (2) Primary and Secondary

   (3) Minor and Major

   (4) Main and virtual

----

Answer: (2)

Explanation: There are two types of memories in a computer system: The Primary Memory and the Secondary Memory. The primary memory can be directly accessed by the CPU whereas the secondary memory cannot be directly accessed.

Q. 4. Which of the following is used to hold running program instructions?

   (1) Primary Storage

   (2) Virtual Storage

   (3) Internal Storage

   (4) Minor Devices

----

Answer: (1)

Explanation: The primary storage is responsible for holding the data, intermediate results and the results of ongoing processes or jobs. Virtual storage is the main memory storage required for saving large amount of data for future reference. The other options are invalid.

Q. 5. Which of the following is non-volatile storage?

   (1) Backup

   (2) Secondary

   (3) Primary

   (4) Cache

----

Answer: (2)

Explanation: The secondary storage is the non-volatile storage unit because the data is not lost when the power supply is dissipated. Primary memory is the volatile memory.

Q. 6. Which of the following is used in main memory

   (1) SRAM

   (2) DRAM

   (3) PRAM

   (4) DDR

----

Answer: (2)

Explanation: DRAM stands for dynamic random access memory. It is denser than SDRAM (Static) and therefore it is used in the main memory. They are in the form of semiconductor RAMs.

Q. 7. Which of the following are types of ROMs?

   (1) SROM & DROM

   (2) PROM & EPROM

   (3) Only one type there is no further classification

   (4) PROM & EROM

----

Answer: (2)

Explanation: There are two types of Read Only Memories: PROM i.e., Programmable ROM & EPROM i.e., Erasable Programmable ROM. When only a small number of ROMs with a particular memory content is needed, PROM is used and in case of EPROM, all the contents of the storage cells must be erased before the write operation.

Q. 8. RAID stands for __________

   (1) Redundant array of independent disks

   (2) Redundant array of individual disks

   (3) Reusable Array of independent disks

   (4) Reusable array of individual disks

----

Answer: (1)

Explanation: RAID is a multiple-disk database design which is viewed as a single logical disk by the operating system. Data are distributed across the physical drives of the array. It guarantees the recovery of data in case of data failure.

Q. 9. A non-erasable disk that stores digitized audio information is _____

   (1) CD

   (2) CD-ROM

   (3) DVD-R

   (4) DVD-RW

----

Answer: (1)

Explanation: A compact disk stores digitized audio information. The standard system uses 12 cm disks and can record more than 60 minutes of uninterrupted playing game.

Q. 10. The first practical form of Random Access Memory was the __________

   (1) SSEM

   (2) Cathode Ray Tube

   (3) William’s Tube

   (4) Thomas’s Tube

----

Answer: (3)

Explanation: The first practical form of RAM was the William’s Tube made in 1947. It stored data as electrically charged spots on the face of a Cathode Ray Tube.

इनपुट यूनिट पर केंद्रित प्रश्न

मंगलवार, 2 नवंबर 2021

Set of Computer Fundamentals Interview Questions and Answers focuses on “The Output Unit”.

 10,453 computer instructors will be recruited in Rajasthan

There will be 9862 posts of Basic and 591 posts of Senior Computer Instructor.
For the first time in the state, the Rajasthan government is going to make computer instructor recruitment permanent. The Education Department issued its orders. Under this, 9862 Basic Computer Instructor, while 591 Senior Computer Instructor posts will be recruited in the state. The exam date has not been announced yet.
Series of MCQs are being introduced for the preparation of the exam.
Prepare for MCQs.

This set of Computer Fundamentals Interview Questions and Answers focuses on “The Output Unit”.

1. The process of producing useful information for the user is called ___________

   a) Controlling

   b) Outputting

   c) Inputting

   d) Processing

----

Answer: b

Explanation: The Output Unit is responsible for giving the results to the user in the form of a printed report or visual display. The process is referred to as outputting. Controlling is nothing but the manner and sequence in which the instructions are being operated. Inputting means giving instructions to the system whereas, processing means performing certain operations and calculations.

2. The output unit coverts the data entered by the user into computer understandable form.

   a) True

   b) False

----

Answer: b

Explanation: The Output unit is responsible for converting the computer obtained data into user understandable format. The Input Unit is responsible for converting the data in computer understandable format.

3. VDU stands for __________

   a) Virtual Display Unit

   b) Visual Display Unit

   c) Virtual Detection Unit

   d) Visual Detection Unit

----

Answer: b

Explanation: A Visual Display unit is also referred to as the monitor who basically is used to give the results or outputs to the user. It comprises of a cathode ray tube internally.

4. What does SVGA stands for?

   a) Standard Visual Graphics Array

   b) Super Visual Graphics Array

   c) Standard Video Graphics Array

   d) Super Video Graphics Array

----

Answer: d

Explanation: Super Video Graphics Array is a type of Visual Display Unit. It supports 1024 by 768 pixels with 60,000 different colors.

5. The devices that used to give single or multiple colored images and drawings are ____________

   a) Monitors

   b) Printers

   c) Plotters

   d) VDUs

----

Answer: c

Explanation: Plotters are the devices which are used to give colored images. They use ink pens or ink jets for drawing. Pens of different colors and shades are used for shading and styling.

6. A special request originated from some device to the CPU to acquire some of its time is called ___________

   a) Disturbance

   b) Attenuation

   c) Interrupt

   d) Noise

----

Answer: c

Explanation: An interrupt is a kind of request which takes control of the system bus for some time, then performs all the operations and gives back control to the CPU. It is usually identified by some number and is handled by the interrupt controller.

7. Line Printers that print one line at a time are _________

   a) Laser Printers

   b) Inkjet Printers

   c) Drum Printers

   d) Chain Printers

----

Answer: c

Explanation: The drum printers have a solid cylindrical drum with characters embossed on its surface in the form of circular bands. It can only print a predefined set of characters.

8. A ___________________ monitor looks like a television and are normally used with non-portable computer systems.

   a) CRT

   b) LCD

   c) LED

   d) Flat Panel Monitors

----

Answer: a

Explanation: A CRT (or the Cathode Ray Tube) Monitor looks like a television ideally. The flat panel monitors are thinner and lighter in comparison.

9. Which of the following is not a function of the Output Unit?

   a) It produces results that can be easily understood by the user

   b) It accepts the results produced by the computer

   c) It supplies the data and instructions to the outside world

   d) It supplies the data and instructions to the computer for further processing

----

Answer: d

Explanation: The output unit is responsible for giving the results to the user in the form of printed report or visual display. It is not responsible for giving the instructions back to the CPU for processing.

10. PCI stands for _________

   a) Peripheral Component Interconnect

   b) Partial Component Interconnect

   c) Peripheral Component Interaction

   d) Partial Component Interaction

----

Answer: a

Explanation: PCI is a high-bandwidth bus that can function as a peripheral bus. Compared with others, it delivers better system performance

Output

इनपुट यूनिट पर केंद्रित प्रश्न

Set of Computer Fundamentals Multiple Choice Questions & Answers (MCQs) focuses on “The Input Unit”.

10,453 computer instructors will be recruited in Rajasthan
There will be 9862 posts of Basic and 591 posts of Senior Computer Instructor.
For the first time in the state, the Rajasthan government is going to make computer instructor recruitment permanent. The Education Department issued its orders on Sunday. Under this, 9862 Basic Computer Instructor, while 591 Senior Computer Instructor posts will be recruited in the state. The exam date has not been announced yet.
Series of MCQs are being introduced for the preparation of the exam.
Prepare for MCQs.

 Set of Computer Fundamentals Multiple Choice Questions & Answers (MCQs) focuses on “The Input Unit”.

1. Which unit is responsible for converting the data received from the user into computer understandable format?

   a) Memory Unit

   b) Arithmetic & Logic Unit

   c) Input Unit

   d) Output Unit

   Answer: c

Explanation: The Input Unit converts the data, which the user enters into a language which the computer understands, i.e. it converts the data into binary format. The Output Unit is responsible for giving the results in user-

understandable format. The Storage Unit is responsible for storing the data after immediate results of processing whereas; the ALU is responsible for various arithmetic and bitwise operations.

2. The only language which the computer understands is ______________

   a) Assembly Language

   b) Binary Language

   c) BASIC

   d) C Language

Answer: b

Explanation: The Computer understands only binary language which is written in the form of 0s & 1s. A computer can understand assembly language but an assembler is required which converts the assembly language to binary language. Similarly, for understanding high level languages, compilers/interpreters are required.

3. The smallest unit of data in computer is ________________

   a) Byte

   b) Nibble

   c) Bit

   d) KB

Answer: c

Explanation: A bit is defined as the smallest unit of data in a computer system. It is used as a short form of Binary Digit. A bit can have only two values 0 or 1. A nibble comprises of 4 bits, a byte is a collection of 8 bits whereas KB (Kilobyte) is equal to 1024 bytes.

4. One nibble is equivalent to how many bits?

   a) 2

   b) 4

   c) 8

   d) 1

Answer: b

Explanation: A nibble is defined as a unit of data which comprises of 4 binary digits or half of 8-bit byte. Therefore, 1 nibble = 4 bits. A bit is the smallest unit of data in a computer system. A byte = 8 bits, therefore, half of a byte=4 bits=a nibble.

5. Which of the following describes the correct format of an input instruction?

   a) IN 82

   b) INPUT 82

   c) INP 82

   d) 82 INP

Answer: a

Explanation: The input/output instructions are used to transfer information between external peripherals and the CPU. The correct format of an input instruction is: IN 8-bit port address. Here, IN 82 is the correct option, where 82 is the designated port address. All the other options are invalid. 

6. The input machine which originated in the United States around 1880s is a

   a) Mouse

   b) Joystick

   c) Keyboard

   d) Bar Code Reader

Answer: c

Explanation: A keyboard is an input device which originated in the 1880s and is used to give instructions to the computer in the form of letters and numbers. Mouse is used for the selection of various objects on the screen, joystick is mainly used for gaming purpose and bar code readers are used for reading the bar-codes.

7. What does the COMPUTER stands for?

   a) Commonly Operated Machines Used in Technical and Educational Research

   b) Commonly Occupied Machines Used in Technical and Educational Research

   c) Commonly Operated Machines Used in Technical and Environmental Research

   d) Commonly Oriented Machines Used in Technical and Educational Research

Answer : a

Explanation: Some people say that COMPUTER stands for Common Operating Machine Purposely Used for Technological and Educational Research

8. 1 yottabyte = ______________

   a) 1024 TB

   b) 1024 EB

   c) 1024 ZB

   d) 1024 PB

Answer: c

Explanation: 1 yottabyte is equal to 1024 ZB, which stands for zettabyte. Further, 

1 ZB=1024 EB (exabyte) and and 1 EB=1024PB (petabyte).

9. Which of the following is not a function of the Input Unit?

   a) It reads instructions and data from the outside world.

   b) It converts the data into computer acceptable format.

   c) It makes the data into user understandable format.

   d) It supplies the data and instructions to the computer for further processing.

Explanation: The input unit converts the data into computer understandable format i.e. binary format and not the user understandable format. It is the duty of the output unit to make the data into user understandable format.

10. Label the parts 1 and 2:

   a) 1.ALU 2. MU

   b) 1.Output unit 2.Input Unit

   c) 1.MU 2. ALU

   d) 1.Input Unit 2.Output Unit

Answer: d

Explanation: The above diagram is a simple explanation which describes how the instruction is given to the CPU, how it is processed, and then how the result is obtained.

So here, the input unit is used to give instructions to the central processing unit and the output unit is responsible for giving the result to the user. 

MCQ input

इनपुट यूनिट पर केंद्रित प्रश्न