Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Number Systems and Codes Questions
Octal-to-decimal conversion — clarify base explicitly Convert 1731 (base 8) to its decimal (base 10) value.
Bitwise complement basics — 1's complement Find the 1's complement (bit inversion) of the 8-bit binary value 10011101.
Binary to hexadecimal grouping — write compact hex form Express the binary number 11101011000111010 in hexadecimal notation.
Hexadecimal to binary — nibble-by-nibble conversion Convert the hexadecimal number 14B16 to its binary (base-2) representation.
Character encoding fundamentals — ASCII bit width How many bits are defined in the original ASCII character code standard?
Significance of bit positions in binary numbers Which bit change causes the largest change in a binary number's value: MSB (most significant bit) or LSB (least significant bit)?
BCD encoding check — map each decimal digit to 4 bits Which BCD bit pattern represents the decimal value 342 using 3-digit packed groups?
Binary addition — add two unsigned binary numbers Compute the sum of 11101 (base 2) and 10111 (base 2). Give the result in binary.
BCD addition sanity check — one digit each Compute the sum of the two BCD digits 0011 and 0011 and report the BCD result.
Number systems — convert the binary value to hexadecimal. Task: Convert binary 1001₂ into its equivalent hexadecimal form and choose the correct option.
Coding systems — identify the primary advantage of BCD over straight binary. Question: What is the main practical benefit of Binary Coded Decimal (BCD) when compared with pure binary representation?
Evaluate the decimal expression with powers of ten. Compute the value of 3 × 10^1 + 7 × 10^0 and select the correct result.
Binary arithmetic — find the 2's complement of the 8-bit value. Task: Determine the 2's complement of 11100111₂ (invert bits and add 1).
Base conversion — convert hexadecimal 16₁₆ to its decimal value. Choose the correct decimal equivalent of the hex number 0x16.
Error detection — what does parity checking excel at? Select the statement that best describes the capability of parity for detecting transmission errors.
Base conversion — convert the binary number to octal. Task: Express 101110101111010₂ in octal (group bits in 3s from the right).
Binary result of a decimal addition — compute and encode. Problem: 49 + 1 in decimal; choose the correct 8-bit binary representation of the sum.
Base conversion — convert the octal number to decimal. Task: Find the decimal value of 74₈ by expanding with powers of 8.
Hexadecimal to decimal — evaluate B5₁₆. Convert the hexadecimal number B5₁₆ to its decimal equivalent using positional weights.
ASCII decoding practice Decode the following ASCII bit stream into readable English text (assume standard 7- or 8-bit ASCII grouping as appropriate): 10100111010100101010110001001011001 01000001001000100000110100101000100
1
2
3
4
5
6
7
8
9
10
11