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 Coded Decimal (BCD) — in digital electronics, BCD represents each decimal digit 0–9 independently. Each single decimal digit is encoded as which fixed-length binary pattern?
Unit-distance coding — which binary code progresses so that only one bit changes between any two successive code words (minimizing transition errors)?
Bit significance — in a fixed-width binary number, changing which bit causes the largest change in numeric value for a single-bit toggle?
Foundational base — digital electronics, logic gates, and computer arithmetic are fundamentally built on which numbering system?
Nonweighted, unit-distance identification — which of the following is a nonweighted binary code that also changes only one bit between successive values (a unit-distance code)?
Excess-3 (XS-3) BCD — which code represents each decimal digit by its 4-bit binary value after adding 3 to that digit (i.e., code = binary(digit + 3))?
Sign representation basics: In common signed-number encodings (signed magnitude, one’s complement, two’s complement), what sign bit indicates a positive value?
Core idea of digital systems: Do digital systems operate exclusively on discrete symbols (digits), such as codes representing numbers, letters, or control symbols, rather than continuously variable quantities?
Opcode width reality check: Do computer manufacturers commonly use only 3-bit codes to represent operations/instructions across their processors?
Error detection basics: Is a parity bit (for example, odd or even parity) used to detect errors in data transmission that may be caused by noise?
Scope of ASCII: Does the ASCII code represent all possible alphanumeric data (across languages and symbol sets), or is it limited to a specific basic set?
Parity example with ASCII “2B” (hex for the “+” character): If we add an odd-parity bit as the most significant bit to the 7-bit ASCII code for 0x2B, does the resulting 8-bit pattern equal 10101011?
Fundamentals of number systems in digital electronics: In computer architecture and digital circuit design, is the binary (base-2) number system considered the foundational representation used by all digital computers for data and instructions?
Binary-to-hexadecimal conversion technique: When converting a binary value to hexadecimal, is it valid to pad the left side (most significant side) with leading zeros to form complete groups of 4 bits before translating each group to a hex digit?
Hexadecimal base identification: Does the hexadecimal numbering system use base 15, or is it defined as a base-16 system with digits 0–9 and A–F?
Terminology and storage granularity: Do most computers “store binary data in groups of 32 bits called double words (DWORDs),” or is 32-bit grouping platform-dependent while the fundamental storage unit remains the 8-bit byte?
Definition check for BCD (binary-coded decimal): Do BCD digit encodings use only the 4-bit patterns from 0000 through 1001 (representing decimal 0–9), with the remaining 4-bit combinations considered invalid or unused for a single BCD digit?
Bit–byte relationship: Given that 1 byte = 8 bits, does a string of 64 bits correspond to 9 bytes, or is the correct conversion 8 bytes?
Range of a fixed-width unsigned binary value: What is the maximum decimal value representable by a 4-bit binary number (using all bits for magnitude)?
Bitwise complementation: Is the 1’s complement of a binary number obtained by inverting every bit (changing all 0s to 1s and all 1s to 0s) across the entire width?
1
2
3
4
5
6
7
8
9
10
11