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 → Introduction to Computer 32

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
Binary XOR used in error detection because?
XOR of data with parity = 0 if no error
click to copy
Ones complement addition: end-around carry means?
Add the carry bit back to LSB
click to copy
Negative zero in ones complement is represented as?
11111111
click to copy
The biased exponent in IEEE 754 single precision uses bias of?
127
click to copy
Which protocol provides IP address autoconfiguration in IPv6?
SLAAC (Stateless Address Autoconfiguration)
click to copy
ICMPv6 NDP (Neighbor Discovery Protocol) replaces which IPv4 protocols?
ARP and ICMP router discovery
click to copy
Which IPv6 address type replaces ARP?
Link-local solicited-node multicast
click to copy
OSPF area 0 is called?
Backbone area
click to copy
BGP is classified as which type of routing protocol?
EGP (Exterior Gateway Protocol)
click to copy
BGP uses which transport protocol?
TCP (port 179)
click to copy
EIGRP is a?
Cisco proprietary advanced distance vector protocol
click to copy
MPLS (Multi Protocol Label Switching) forwards packets based on?
Short fixed-length labels — faster than IP routing
click to copy
SD-WAN stands for?
Software Defined Wide Area Network
click to copy
SDN (Software Defined Networking) separates?
Data and control planes
click to copy

Computer Fundamentals → Number System 7

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
Binary number 10000000000 has how many zeros?
10
click to copy
Hexadecimal is more convenient than binary for memory addresses because?
Each byte is represented by exactly 2 hex digits
click to copy

Computer Fundamentals → Memory Units 1

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