Chapter 5: Number System and Digital Logic (Set-10)

A 10-bit 2’s complement register stores 1111000001₂. What is the correct decimal value of this signed number?

A −62
B +961
C −63
D +993

A 10-bit unsigned register holds 1111000001₂. What decimal value does this represent as an unsigned magnitude?

A 945
B 993
C 1009
D 961

A signed 8-bit system adds 10010000₂ and 10010000₂ using 2’s complement. What is the correct result interpretation?

A No overflow
B Signed overflow
C Unsigned overflow
D Result is zero

In 8-bit 2’s complement, what is the decimal value of 10010000₂?

A −96
B +144
C −112
D +112

A designer uses overflow flag = (carry into MSB) XOR (carry out of MSB). For which arithmetic is this overflow rule valid?

A Signed 2’s complement
B Unsigned addition
C BCD addition
D Gray code addition

A 6-bit signed value is −7 in 2’s complement. Which bit pattern correctly represents −7?

A 111000
B 000111
C 100111
D 111001

In 6-bit 1’s complement, what is the representation of −7?

A 111001
B 000111
C 111000
D 100111

A 4-bit 2’s complement number 0111₂ is added to 0101₂. What happens to the sign and overflow?

A Signed overflow
B No overflow
C Underflow only
D Becomes negative

A 4-bit 2’s complement result 1100₂ equals which decimal value?

A −3
B +12
C +4
D −4

A binary number 111111111111₂ (12 bits) is converted to hexadecimal. What is the correct hex result?

A F0F
B 0FF
C FFF
D EFF

Convert hexadecimal 7A3₁₆ to binary using correct 4-bit mapping per hex digit.

A 0111101000111
B 011110100011
C 11110100011
D 011101100011

Convert octal 645₈ to binary using exact 3-bit groups per digit.

A 110110101
B 110100011
C 110100101
D 101100101

An 8-bit BCD number represents two decimal digits. Which pair is correctly valid BCD bytes for “59”?

A 0110 1001
B 0101 1010
C 0101 1111
D 0101 1001

A BCD digit addition produces 1100₂ in the lower nibble without carry. What correction must be applied?

A Add 0011
B Add 0110
C Add 0101
D Add 1001

A K-map group of 8 cells in a 4-variable map simplifies to a term containing how many variables?

A 2 variables
B 3 variables
C 1 variable
D 4 variables

A K-map group of 2 cells in a 4-variable map leaves how many variables in the term?

A 3 variables
B 1 variable
C 2 variables
D 4 variables

For a 4-variable K-map, which group shape is always invalid for simplification?

A Rectangle block
B Wrap-around block
C 2×2 square
D Diagonal pair

A NAND-only implementation of NOT(A) is created by connecting NAND inputs

A To different signals
B One to 0
C Both to A
D One floating

Which expression is the correct De Morgan equivalent of (A + B + C)’ ?

A A’·B’·C’
B A’ + B’ + C’
C (A·B·C)’
D A·B·C

Which expression is the correct De Morgan equivalent of (A·B·C)’ ?

A A’·B’·C’
B A’ + B’ + C’
C (A+B+C)’
D A+B+C

A full adder carry-out equation AB + AC + BC is an example of which logic concept?

A Parity function
B Identity function
C Null function
D Majority function

A 3-input parity generator wants even parity. Which logic operation naturally helps compute parity across bits?

A AND chain
B OR chain
C XOR chain
D NOR chain

A 2-to-4 decoder has how many selectable output lines and why?

A 2 outputs
B 4 outputs
C 6 outputs
D 8 outputs

A 1-to-16 demultiplexer requires how many select lines to choose a single output?

A 2 lines
B 3 lines
C 5 lines
D 4 lines

The ASCII standard is called 7-bit because it can represent exactly how many codes?

A 64 codes
B 96 codes
C 128 codes
D 256 codes

In 2’s complement, why is the negative range one larger than the positive range in fixed width?

A Pattern 100…0
B Two zeros exist
C MSB reserved
D Hex mapping

A binary number 10000000₂ equals 128 in unsigned but −128 in signed 2’s complement. This difference happens due to

A Base change
B Parity addition
C Sign bit meaning
D BCD correction

Which condition guarantees unsigned addition overflow in n-bit arithmetic?

A Result MSB is 1
B Inputs same sign
C XOR is 1
D Carry out occurs

In a logic circuit, a “don’t care” condition in K-map is used mainly to

A Aid simplification
B Force output 0
C Force output 1
D Remove variables

A 4-bit signed 2’s complement value 1000₂ equals

A −7
B +8
C −8
D +0

The binary subtraction 10000₂ − 00001₂ equals 01111₂. This result is correct because borrowing in binary effectively adds

A 1 to bit
B 8 to bit
C 16 to bit
D 2 to bit

Convert decimal 4095 to hexadecimal. Which is correct?

A FFFF
B FFF
C 0FFF
D EFF

Convert hexadecimal 0x8000 (16-bit) to decimal unsigned value.

A 16384
B 65535
C 32768
D 8192

Convert decimal 1023 to binary.

A 1111111111
B 1000000000
C 1111111110
D 0111111111

A 10-bit unsigned maximum value is

A 511
B 1024
C 2047
D 1023

In 10-bit 2’s complement, the minimum value equals

A −511
B −1023
C −512
D 0

In 10-bit 2’s complement, the maximum positive equals

A 512
B 511
C 1023
D 1024

The XOR of bits is commonly used in checksums because it is sensitive to

A Even flips only
B Any change always
C No change
D Odd flips only

A 2-input XOR gate can be built from basic gates by combining AND/OR/NOT. Which is a correct identity?

A A⊕B=AB + A’B’
B A⊕B=(A+B)’
C A⊕B=A’B + AB’
D A⊕B=AB

A 2-input XNOR identity can be written as

A AB + A’B’
B AB’ + A’B
C (A+B)’
D A’ + B’

A K-map wrap-around grouping is allowed because map variables are arranged in

A Decimal order
B Gray code order
C Random order
D ASCII order

When converting a Boolean expression to NAND-only, the step of moving inversion bubbles across gates is popularly called

A Carry chaining
B Bit stuffing
C Nibble grouping
D Bubble pushing

A 4-variable function has minterms m(0,1,2,3,8,9,10,11). This set forms which simple simplified term?

A A’
B C’
C B’
D D’

In binary, subtracting using 2’s complement works because adding a number and its 2’s complement yields

A Zero with carry
B All ones
C Random bits
D Invalid code

A 2-to-1 multiplexer can implement NOT(A) by selecting between constants. Which setup works?

A S=A, I0=0, I1=1
B S=0, I0=A, I1=A
C S=1, I0=A, I1=A
D S=A, I0=1, I1=0

A demultiplexer can act like a decoder when its data input is fixed to

A 0 constant
B Alternating
C 1 constant
D Floating

In a 4-bit BCD, adding 8 (1000) and 7 (0111) gives 1111. After correction, what is the valid BCD digit and carry?

A 0100 carry1
B 0101 carry1
C 0011 carry1
D 1111 carry0

A binary number is said to be normalized in a given base when its most significant digit is

A Always 0
B Always 1
C Always even
D Non-zero

A logic circuit that remembers state and uses feedback paths is typically

A Sequential
B Combinational
C Pure arithmetic
D Encoding-only

A 4-bit binary 1010 is treated as signed 2’s complement. What decimal value does it represent?

A −5
B +10
C −6
D +6

Leave a Reply

Your email address will not be published. Required fields are marked *