Binary System — Set 1
Computers · बाइनरी सिस्टम · Questions 1–10 of 60
What is the base of the binary number system used in digital computers?
Correct Answer: A. Base 2
The binary system is a base-2 system because it uses only two distinct digits. These digits are 0 and 1, representing the off and on states of transistors. All digital data is eventually stored and processed in this format.
Which mathematician is credited with the invention of the modern binary number system in 1679?
Correct Answer: D. Gottfried Wilhelm Leibniz
Gottfried Wilhelm Leibniz developed the modern binary system and published his findings in the 17th century. He believed that the numbers 0 and 1 could represent all logical concepts. His work laid the theoretical foundation for digital computing centuries later.
What does a single '0' or '1' in a binary system represent in terms of data storage?
Correct Answer: A. A Bit
A bit is the smallest unit of information in computing and is short for 'binary digit'. It can exist in only one of two possible states, typically 0 or 1. High and low voltages are used to physically represent these bits in circuits.
How many bits are grouped together to form one standard 'Byte'?
Correct Answer: D. 8 bits
A byte is a standard unit of digital information that consists of eight individual bits. It is the basic unit used to represent a single character, such as a letter or a number. Most hardware architectures treat a byte as the smallest addressable unit of memory.
In binary notation, what is the value of the decimal number 10?
Correct Answer: A. 1010
The decimal 10 is calculated as 8 + 2, which corresponds to the 4th and 2nd positions in binary. In 1010, the digits represent weights of 8, 4, 2, and 1 respectively. This positional system is fundamental to binary arithmetic.
Which of the following terms describes a group of four bits?
Correct Answer: A. Nibble
A nibble is exactly half of a byte and consists of four binary digits. It is useful for representing a single hexadecimal digit (0-F). This grouping is frequently used in low-level data processing and BCD encoding.
What is the maximum decimal value that can be represented by a 4-bit binary number?
Correct Answer: D. 15
A 4-bit number can represent 2 to the power of 4, which equals 16 different values. Since we count from zero, the highest representable value is 15 (1111 in binary). This range is a fundamental constraint in small-scale logic circuits.
Which logic gate outputs a '1' only if both of its inputs are '1'?
Correct Answer: A. AND Gate
The AND gate performs the logical conjunction of two binary inputs. It follows a strict rule where the result is true only when all inputs are true. This behavior is similar to multiplication in standard binary arithmetic.
What is the binary equivalent of the decimal number 1?
Correct Answer: D. 1
The value 1 is represented simply as '1' in binary, as it fits in the first positional slot. The first slot in any base system represents the base to the power of zero. In both decimal and binary, the number 1 remains represented by the same symbol.
Which binary logic operation is often used to invert a bit from 0 to 1 or 1 to 0?
Correct Answer: A. NOT
The NOT gate is a unary operator that performs logical negation on its input. It switches a high signal to low and vice versa. It is the simplest logic operation used to manipulate individual bits.