Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Arithmetic Operations and Circuits Questions
Two’s complement addition (8-bit): Add 11110010 and 11110011. First identify each 8-bit number's decimal sign and magnitude, then compute their decimal sum.
Compute –11 + (–2) using 8-bit two’s complement. Which 8-bit two’s-complement result is obtained?
4-bit parallel adder design: What is the purpose of fast-carry / look-ahead carry circuitry used in most 4-bit parallel adders?
Binary addition practice: Add decimal 26 and 27 in binary and choose the correct binary sum.
Binary long division: Divide 1100010 (binary) by 0101 (binary 5). What is the decimal remainder of the division?
ALU control concept: The selector (control) inputs to an arithmetic-logic unit determine what aspect of its operation?
Two’s complement subtraction setup: To compute 43 − 15 in binary by addition, which 6-bit two’s-complement code should be added to 43 to represent “minus 15”?
Adder fundamentals: Name the two basic adder building blocks used in digital circuits.
Binary multiplication practice When multiplying the decimal numbers 13 × 11 using binary arithmetic (13 = 1101₂ and 11 = 1011₂), what is the third partial product generated during the shift-and-add process?
Two's-complement limits For an 8-bit two's-complement binary number, what is the numerical range represented (inclusive)?
Counting single-bit subtraction cases How many distinct basic one-bit binary subtraction operations (A − B, without borrow-in) are possible?
Counting subtraction input combinations For one-bit binary subtraction without borrow-in, how many distinct input combinations (A,B) exist?
Two half adders can be combined to form a full adder with no additional gates.
A technique to speed parallel addition by eliminating the delay caused by the carry bit propagation is called fast carry, or look-ahead carry.
Signed binary numbers have one bit that represents the sign, with the remaining bits representing the magnitude.
If you borrow from a position that contains a 0, you must borrow from the more significant bit that contains a 1. All 0s up to that point become 1s, and the digit last borrowed from becomes a 0.
Using the two's complement number system we can add numbers with like signs and obtain the correct result.
End around carry is an operation in 1's complement subtraction where a 1 is added to the sum of the 1's complement of both numbers.
A full adder adds three bits, a half adder adds 1-1/2 bits.
The operands in a subtraction operation are the subend and the minuend.
1
2