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
Decimal→Binary conversion — “One valid method to convert a decimal integer to binary is successive division by 2 and collecting remainders.” Evaluate.
BCD vs hexadecimal — Evaluate: “Hexadecimal is used to encode BCD numbers.” Clarify the distinction between 4-bit hex digits and BCD nibbles.
Computer internal representation vs. character encoding: “A computer will use ASCII code to store information internally.” Decide whether this blanket statement is valid, considering that processors operate on binary data and that ASCII is only one of many encodings used for text.
Even parity rule in digital communications: “In even parity, the sum (count) of 1-bits in the code group must be even.” Determine if this definition is accurate and complete.
Hexadecimal usage in digital systems: “Many digital electronic systems work with hexadecimal rather than binary.” Evaluate this statement by considering internal hardware operation versus human-friendly representation.
Magnitude vs. representation: “When converting a decimal number to hexadecimal, the hex result will be a larger number than the original decimal.” Decide whether this claim makes sense in number-system conversions.
Why hexadecimal is popular: “The primary advantage of the hexadecimal number system is the ease of conversion to and from binary.” Assess this rationale for using base-16 in digital design.
Mixed-base identity check: “12 (decimal) = 1101 (binary) = C (hexadecimal) = 0001 0010 (BCD).” Determine whether this chain of equalities is valid.
Division-by-two method nuance: “When converting decimal to binary using repeated division by 2, the first remainder obtained becomes the most significant bit (MSB).” Judge this statement.
Binary-to-decimal conversion method: “A binary number can be converted to decimal by summing the decimal weights of all positions that contain a 1.” Decide if this description is correct.
Acronym expansion: “ASCII stands for American Standard Code for Information Interchange.” Confirm whether this expansion is correct.
ASCII hex decoding exercise: “In ASCII, the hexadecimal byte sequence 53 54 55 44 45 4E 54 corresponds to the text string ‘STUDENT’.” Evaluate this statement.
Parity check with odd parity: For the 9-bit data pattern 100011010, would this word pass an odd-parity check at the receiver (i.e., total count of 1s should be odd)? Choose the best evaluation.
Number base conversion principle: Is “repeated division-by-10” the standard manual technique to convert a decimal (base-10) number to its binary (base-2) representation?
Two’s complement rule: Is the two’s complement of a binary number obtained by forming the one’s complement and then adding 1 to the result?
BCD definition check: Is a decimal number converted to BCD by replacing each decimal digit with a 3-bit binary code?
Translate BCD to pure binary: Given the BCD-coded sequence 0111 1001 0011 (which represents decimal digits 7, 9, and 3), what is the equivalent binary bit string written contiguously?
Terminology clarity: Most computers store data in strings of how many bits, and what is such a unit commonly called?
Even parity encoding for a given value: Represent decimal 37 using binary along with an even parity bit (assume the parity bit is placed as the most significant bit of an 8-bit pattern). Which option matches?
Binary basics: The two symbols (digits) used in the binary number system are which pair?
1
2
3
4
5
6
7
8
9
10
11