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
Two's-complement calculation: Find the 2's-complement of 00001111 (8-bit representation).
Capabilities of a 4-bit adder IC: Which operation(s) can a standard 4-bit binary adder perform without additional gating logic?
1-bit binary subtraction (borrow logic): Compute 1 − 1 and report the difference and borrow.
2-bit vector operation (recovered intent = addition): Given 2-bit unsigned vectors [A] = 10 and [B] = 01 (A is MSB), compute [A] + [B].
1-bit binary addition (sum and carry): Compute 1 + 1 and report the sum and carry.
Hex subtraction: Compute FC48 − AB91 (hexadecimal). Choose the correct hex result.
Two's-complement subtraction rule: When subtracting 6 from 9 using a 2's-complement adder, the ________ is 2's-complemented before the addition.
VHDL packages – what do they primarily collect and expose so multiple entities/architectures in a design can share common resources (types, subprograms, constants, component declarations)?
Two’s-complement arithmetic – for arithmetic negation of a signed binary value, which operation should be applied?
Two’s-complement subtraction – which core operation does the hardware actually perform to realize A − B?
VHDL architecture structure – what appears first to introduce the variable signals, component declarations, and other items used between BEGIN and END?
1
2
3
4
5
6
7