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
Binary to Octal — Group Bits in Threes Find the octal equivalent of the binary number 1101110101110110 by grouping into 3-bit sets from the right.
Alphanumeric Code Requirements — Minimum Character Set As a minimum, what should a general purpose alphanumeric code include for practical computer use and human readable I/O?
Hex to Decimal — Positional Weights Convert the hexadecimal number 1CF16 to its decimal value by expanding each digit with powers of sixteen.
Decimal to BCD — Digitwise Encoding Convert the decimal number 469 into straight BCD by encoding each decimal digit as a 4-bit binary code and concatenating the results.
Foundations of Digital Electronics — Underlying Number System Digital electronics fundamentally operates using which numbering system for representing logic levels and data?
Decimal to Hexadecimal — Division and Remainder Convert the decimal number 74 to its hexadecimal form, showing the division by 16 process or an equivalent mental shortcut.
Hex to Binary — Four Bits per Hex Digit Write the binary equivalent of the hexadecimal value F3A16 by expanding each hex digit into its 4-bit binary group.
Address bus width to addressable memory mapping If a typical PC CPU exposes a 20-bit address bus, how many bytes of memory can it directly address?
Binary conversion practice — base-10 to base-2 Convert the decimal number 213 (base 10) into its binary representation (base 2).
BCD encoding — two-digit example Represent the decimal value 11 in BCD (Binary-Coded Decimal) using two 4-bit nibbles.
Binary to hexadecimal by nibble grouping Convert the binary number 111111110010 (base 2) to hexadecimal (base 16).
Signed formats — sign-magnitude on 8 bits Express the decimal number −37 using 8-bit sign-magnitude representation (MSB is the sign).
Octal conversion — base-10 to base-8 Convert the decimal number 39 (base 10) into octal (base 8).
BCD encoding — three-digit number Convert the decimal number 127 into packed BCD (concatenate one 4-bit nibble per decimal digit).
Octal to binary via 3-bit groups Convert the octal number 5278 to binary (base 2) by mapping each octal digit to a 3-bit group.
Binary to decimal — evaluate positional weights Convert the binary number 01011 (base 2) into its decimal (base 10) value.
Binary to octal — group bits by threes Convert the binary number 010111100 (base 2) into its octal (base 8) representation.
Digital number systems — terminology check. What is a single hexadecimal digit (one 4-bit value) commonly called in digital electronics?
Base conversion — convert the hexadecimal number to binary. Task: Convert C0B₁₆ into its binary equivalent (expand each hex digit into 4 bits).
Digital vs. analog — evaluate the statement. Claim: “The voltages in digital electronics are continuously variable.” Decide whether this claim is true or false.
1
2
3
4
5
6
7
8
9
10
11