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
Adder notation convention: In adder schematics and equations, which Greek letter is commonly used to denote the summing (sum) output?
Ripple-carry adder limitation: What is a primary disadvantage of the ripple-carry adder architecture when compared with faster adder structures?
Binary long division check: When the binary number 1100010₂ is divided by 0101₂ (which equals 5₁₀), what is the remainder in decimal?
2’s-complement arithmetic: Before adding or subtracting signed binary numbers, operands of different original widths must be sign-extended so that the operation occurs at the same bit width. Evaluate the claim that it is not necessary to have the same number of bits.
Repair the subtraction rule: For 1-bit binary subtraction 0 − 1, the correct result is difference = 1 with a borrow-out of 1 (not 0). Evaluate the statement “difference = 1 borrow = 0.”
Adder performance: A carry look-ahead (CLA) adder uses extra logic to compute carries in parallel and is generally faster than a ripple-carry adder. Evaluate the claim that a look-ahead-carry adder is slower because it requires additional logic.
Single-bit subtraction coverage: There are four basic input combinations for subtracting two single-bit binary numbers (minuend, subtrahend) when considered case-by-case. Evaluate this statement.
Device fact check: The 74LS382 arithmetic/logic unit (ALU) is packaged as a 24-pin device. Evaluate this statement.
ALU status flags: In a 4-bit ALU, overflow indicators (status flags) assert when addition or subtraction produces a result that does not fit in four bits according to the representation in use. Evaluate this statement.
Binary result format (fundamentals): In binary arithmetic, the written result (sum) is expressed using only the digits 0 and 1. Evaluate this statement.
Full adder definition check: A full adder adds two data bits and, by definition, includes both a carry input and a carry output. Evaluate the claim that it “need not” have carry in/out.
ALU scalability: Evaluate the statement: “Arithmetic logic unit (ALU) slices cannot be cascaded to operate on more than four bits.”
HDL organization (VHDL context): “Constants must be included in a package.” Evaluate this statement about design organization.
Adder notation: “The carry-out of a binary adder is denoted by the summation symbol (Σ).” Evaluate this statement.
2-bit vector addition (A as MSB, B as LSB): Given [A] = 10 and [B] = 01 (both 2-bit unsigned), compute [A] + [B] as a 2-bit sum with possible carry.
Binary subtraction method used in computers: Evaluate the statement: “Digital computers use an easier subtraction method called one's complement.”
Device recognition (TTL/CMOS): “74HC283” corresponds to which function in standard logic families?
Binary addition check: Compute 0101 + 1111 and evaluate the proposed result 10100.
BCD addition rule: Evaluate the BCD sum of 0101 (5) and 0100 (4). Is the result 0000 1001 (i.e., 00001001 BCD)?
Binary multiplication check – is the product of 1011 (base 2) and 0110 (base 2) equal to 01100110?
1
2
3
4
5
6
7