Quick Revision

GK One-Line Question & Answer

15541+ short questions with short answers, covering every category and sub-category on the site — no long articles to scroll through. Good for a fast recap before an exam, or a few minutes of daily practice.

Computer Fundamentals → Number System 8

Convert hexadecimal C0A80101 to dotted decimal IP?
192.168.1.1
click to copy
Binary number 101.101 in decimal is?
5.625
click to copy
Hexadecimal 0.8 in decimal is?
0.5
click to copy
BOM (Byte Order Mark) in Unicode files is used to?
Indicate endianness/encoding of file
click to copy
Hexadecimal 3E8 in decimal is?
1000
click to copy
Hexadecimal FFFF in decimal is?
65535
click to copy
Hexadecimal arithmetic: A + B = ?
15 hex
click to copy
Two hexadecimal digits can represent how many bits?
8
click to copy

Computer Fundamentals → Introduction to Computer 31

Binary 11000000.10101000.00000001.00000001 is IP address?
192.168.1.1
click to copy
Booth's algorithm is used for?
Efficient signed binary multiplication
click to copy
Restoring division algorithm in binary?
Partially restores remainder if subtraction result is negative
click to copy
Octal 0.4 in decimal is?
0.5
click to copy
BCD addition of 7+6: result with correction?
0001 0011
click to copy
Excess-3 representation of decimal 5 is?
1000
click to copy
Gray code for decimal 5 is?
0111
click to copy
Binary to Gray code conversion: each Gray bit = ?
XOR of binary bit with previous binary bit
click to copy
Hamming code is used for?
Single-bit error detection AND correction
click to copy
Minimum Hamming distance for single error correction is?
3
click to copy
Number of parity bits needed for 8 data bits in Hamming code?
4
click to copy
CRC error detection can detect?
Burst errors up to CRC length
click to copy
ASCII 'Z' (uppercase) has decimal code?
90
click to copy
The difference between ASCII codes of uppercase and lowercase same letter is?
32
click to copy
Unicode code point for Euro sign (€) is?
U+20AC
click to copy
UTF-16 encodes most common characters using?
2 bytes (one code unit)
click to copy
Surrogate pairs in UTF-16 are used for?
Characters outside BMP requiring 4 bytes (two 16-bit code units)
click to copy
Decimal 1000 in binary is?
1111101000
click to copy
Binary 1 0000 0000 in decimal is?
256
click to copy
The number of bits needed to represent 1000 different values is?
10
click to copy
Binary multiplication is performed by?
Shift and add operations
click to copy
In 8-bit 2's complement, the most negative number is?
-128
click to copy
Overflow in signed binary arithmetic occurs when?
Result exceeds range representable in given bit width
click to copy
Decimal 0.1 + 0.2 in floating point ≠ 0.3 because?
Neither 0.1 nor 0.2 can be exactly represented in binary floating point
click to copy
Machine epsilon is?
Smallest float such that 1.0 + ε ≠ 1.0
click to copy
Q format (fixed-point) Q8.8 means?
8 integer bits + 8 fractional bits = 16-bit fixed-point number
click to copy
Binary division 1010 ÷ 0010 = ?
0101
click to copy
Parallel prefix adder (e.g., Kogge-Stone) reduces carry propagation to?
O(log n)
click to copy
What is binary 1111 + 0001?
1 0000
click to copy
Decimal 255 in octal is?
377
click to copy
Octal 777 in decimal is?
511
click to copy

Computer Fundamentals → Memory Units 1

The carry from binary addition propagates from?
LSB to MSB
click to copy