Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Digital Arithmetic Operations and Circuits Questions
In combinational logic, what is the key difference between a half-adder and a full-adder when adding single-bit operands?
In VHDL hardware description, what is a GENERATE statement used for, and why is it important in structural design?
In 8-bit two's-complement representation used by microcontrollers and CPUs, what is the valid decimal range of values that can be stored?
When multiplying 13 × 11 in binary (13 = 1101, 11 = 1011), what is the third partial product generated during the standard shift-and-add multiplication process (counting from the least significant multiplier bit upward)?
Add the following BCD-encoded numbers (grouped in 4-bit nibbles): 0110 0111 1001 0101 1000 1000. Provide the correctly BCD-adjusted sum as 6 nibbles.
Digital logic design – parity generation using adders Could the SUM output (S) of a full-adder be used to generate the parity bit for two data inputs?
Hex arithmetic practice Compute ACE₁₆ − 999₁₆ and report the result in hexadecimal.
Multiword binary addition Add the 24-bit value 0010 0110 0011 1011 0011 1100 to the 24-bit value formed by concatenating 0101 0101 0001 1110 0001 1111. Report the 24-bit sum.
Hex-by-hex subtraction by bytes Compute the three independent byte differences: 47 − 25, 34 − 1C, FA − 2F. Present the result as three hex bytes separated by spaces.
4-bit parallel adder behavior If the carry-in (Cin) of a 4-bit parallel adder is tied to logic HIGH, what is the effect on the final sum output?
Bit slicing / indexing in vectors Given B[7..0] = 10100101 (bit 7 is MSB), what is the bit slice B[6..2]?
BCD addition with carry correction Adding 9₁₀ (1001) and 7₁₀ (0111) in BCD generates a carry from the lowest digit. What is the correct correction procedure?
Bitwise operations and field extraction Given [A] = 1011 1010 and [B] = 0011 0110 (both 8-bit), let [C] = [A] • [B] where • denotes bitwise AND. What is the decimal value of the field C[4..2]?
Two’s-complement range check In an 8-bit two’s-complement system, what is the range of representable positive integers (including zero)?
Two’s-complement transformation Determine the two’s-complement of each 5-bit binary number: 00110, 00011, 11101. Provide all three results in order.
Adder performance and timing in digital design: In a 4-bit ripple-carry adder constructed from full-adder stages, how does carry propagation delay affect overall operation speed?
Understanding full adders in arithmetic logic design: Which statement about full adders is correct in the context of building a parallel adder?
Hexadecimal arithmetic practice: Compute the sum of the hexadecimal numbers 0110₁₆ and 10010₁₆. Choose the correct hexadecimal result.
Binary subtraction fundamentals: For the single-bit operation 0 − 0 in binary, what are the resulting difference and borrow?
Full-adder inputs: How many input signals must a full adder accept to produce a sum and carry output?
1
2
3
4
5
6
7