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
Even parity assignment Given the 7-bit code 1100001, append a single parity bit so that the overall 8-bit word has even parity.
Decimal to octal conversion Convert the decimal number 281 to base-8 (octal).
Decimal to hexadecimal conversion Convert the decimal number 125 to base-16 (hexadecimal).
Binary to hexadecimal conversion Convert the 8-bit binary value 11001111 to hexadecimal.
Hexadecimal to binary conversion Convert the hexadecimal number C9₁₆ to binary.
Binary to decimal conversion Convert the binary number 01001110₂ to decimal (base 10).
BCD encoding practice What is the Binary-Coded Decimal (BCD) representation for the decimal number 347?
Parity bit assignment — odd parity for a given data word For the 6-bit data word 111001, append a single odd parity bit at the most significant end (left) so that the total count of 1s is odd. What is the resulting 7-bit code?
Even parity framing — location of the parity bit In a typical asynchronous serial frame using even parity, where is the parity bit positioned relative to the data bits?
Decimal to BCD (digit-wise) — include fractional part Convert 59.72 (base 10) to Binary-Coded Decimal (BCD), writing 4 bits per decimal digit and placing a dot to separate integer and fractional parts.
Hex to binary — two-digit example Convert the hexadecimal value C1₁₆ to an 8-bit binary representation.
Hex to binary — four-digit example Convert the hexadecimal number 8B3F₁₆ into its binary equivalent.
BCD representation — decimal 16 as packed two-digit BCD What is the correct 8-bit BCD code for the decimal number 16 (with tens and ones encoded as 4 bits each)?
8-bit binary form of a small decimal Convert the decimal number 35 to an 8-bit binary value (show leading zeros).
Binary to decimal — 8-bit example Evaluate the decimal value of the binary number 11001110₂.
ASCII character width — number of code bits How many information bits (not counting start/stop in serial framing) are used by standard ASCII to represent one character?
Octal to binary — digit-by-digit mapping Treat 527₈ as an octal number and convert it to binary.
Octal to Binary Conversion — Triplet Mapping Convert the octal number 104 (base 8) into its equivalent binary representation, showing how each octal digit expands into three binary bits.
Alphanumeric Codes in Computing — Most Widely Used Standard Which alphanumeric code is most widely used for computer input and output across platforms and protocols?
Binary to Hexadecimal — Nibble Grouping Method Convert the binary number 1011010 (base 2) to its hexadecimal representation by grouping into 4-bit nibbles.
1
2
3
4
5
6
7
8
9
10
11