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
Signal classification — identify the type of information when binary digits are used. An informational signal encoded using binary digits (0 and 1) is best described as:
Base conversion — convert the decimal value to binary. Task: Express 18₁₀ as a binary number (no prefixes or suffixes).
Hexadecimal to decimal — evaluate 777₁₆. Compute the decimal value of the hex number 0x777 using positional weights.
BCD to decimal — decode the packed BCD value. Task: Convert the BCD bitstream 0101 0110 1001 (bcd) into its decimal number.
Base conversion — convert the binary number to decimal. Task: Evaluate the decimal value of binary 1110₂ using positional weights.
Decimal to 8-bit binary — encode the value with leading zeros if needed. Task: Convert 187₁₀ to an 8-bit binary representation.
Analog signals — counting possibilities over a continuous range. If an analog signal can vary anywhere between 0 V and 5 V, how many distinct analog values are possible in theory?
Binary to decimal conversion Convert the binary number 11001001₂ to its decimal (base 10) value.
Hexadecimal to decimal conversion Convert the hexadecimal number 731₁₆ to its decimal (base 10) value.
Decimal to binary conversion The decimal number 188 is equal to which binary (base 2) representation?
Character encoding — assess the statement: “ASCII codes are used strictly for representing the letters in the alphabet.” Is this statement accurate, considering that ASCII also includes digits, punctuation, whitespace, and control codes (e.g., line feed, carriage return)?
Gray code concept — evaluate the statement: “In Gray code, each number is 3 greater than the binary representation of that number.” Consider the defining property of Gray code (single-bit transitions) versus ordinary binary counting.
Excess-3 (XS-3) coding — determine the correctness of the statement: “When using the excess-3 code, a value of 3 is added to each decimal digit before converting that digit to a 4-bit binary code.”
Terminology — evaluate the statement: “The process of converting a decimal number to its binary equivalent is called binary conversion.” Does this naming align with standard number-system terminology taught in digital electronics?
Place value — assess the statement: “The most significant digit (MSD) is the rightmost, largest-weight digit in a number.” Use standard positional notation where place value increases to the left.
Binary subtraction rule — evaluate the statement: “If you borrow from a position that contains a 0, you must borrow from the next more significant 1; all 0s up to that point become 1s, and the digit last borrowed from becomes 0.”
Decimal → binary method — evaluate the statement: “Decimal numbers can be converted into binary by dividing by 2 repeatedly and recording the remainders (LSB first).” Is this standard algorithm description accurate?
Binary addition fact — evaluate the statement: “The addition 1 + 0 doesn’t generate a carry bit; one does not exist.” Consider one-bit addition rules and carry generation conditions.
Hexadecimal to decimal — evaluate the statement: “64 hexadecimal equals 100 decimal.” Treat “64 hexadecimal” as the base-16 number 0x64 and verify its base-10 value.
Terminology — evaluate the statement: “Base is the same as radix.” In number-system language, are the terms “base” and “radix” interchangeable?
1
2
3
4
5
6
7
8
9
10
11