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

When converting a large decimal to binary, the standard method repeatedly uses

A Multiply by 2
B Divide by 2
C Add by 2
D Divide by 10

In repeated division conversion, the binary bits are read in

A Reverse order
B Same order
C Random order
D Middle outward

Convert decimal 29 to binary

A 11011
B 10111
C 11101
D 11110

Convert binary 11010 to decimal

A 24
B 26
C 28
D 30

Convert decimal 73 to hexadecimal

A 4A
B 4B
C 5A
D 49

Convert hexadecimal 2F to decimal

A 31
B 63
C 47
D 79

Convert binary 111011 to octal

A 71
B 73
C 75
D 77

Convert octal 36 to binary

A 111010
B 011011
C 111100
D 011110

Convert binary 10101111 to hexadecimal

A BF
B A7
C AF
D 5F

Convert hexadecimal 9C to binary

A 10011100
B 10011010
C 10101100
D 11110000

In unsigned binary addition, overflow is shown by

A MSB becomes 1
B Carry out MSB
C XOR becomes 0
D Borrow occurs

For 5-bit unsigned, maximum value equals

A 15
B 32
C 31
D 63

For 5-bit 2’s complement, range is

A −15 to +16
B 0 to 31
C −31 to +31
D −16 to +15

In 2’s complement, the pattern 10000000 (8-bit) means

A −127
B −128
C +128
D +0

Which method is easiest for subtraction in digital hardware

A 1’s complement only
B Decimal subtraction
C 2’s complement add
D Repeated division

In 2’s complement, sign extension replicates

A LSB always
B MSB always
C Middle bit
D Parity bit

In 1’s complement representation, −0 is

A 1111…1111
B 0000…0000
C 1000…0000
D 0111…1111

Which is true about 2’s complement zero

A Two different zeros
B Zero is 1111
C One zero only
D Zero is 1000

A gate that outputs complement of OR is

A NAND
B NOR
C XOR
D XNOR

A gate that outputs complement of AND is

A NOR
B XOR
C NOT
D NAND

Which gate can act as inverter by tying inputs together

A AND
B OR
C NAND
D XOR

For XOR, output is 1 when

A Inputs equal
B Inputs differ
C All inputs 1
D All inputs 0

For XNOR, output is 1 when

A Inputs equal
B Inputs differ
C Output forced 0
D Carry exists

A truth table for n inputs contains

A n rows
B n² rows
C 2ⁿ rows
D 2n rows

Boolean identity: A + 0 equals

A 0
B A
C 1
D A’

Boolean identity: A · 1 equals

A 0
B 1
C A’
D A

Boolean null law: A + 1 equals

A 0
B A
C 1
D A’

Boolean null law: A · 0 equals

A 1
B 0
C A
D A’

Idempotent rule for AND is

A A+A=A’
B A·A’=1
C A+0=0
D A·A=A

Complement rule: A + A’ equals

A 0
B A
C 1
D A’

Complement rule: A · A’ equals

A 1
B 0
C A
D A’

Absorption: A + AB simplifies to

A A
B AB
C B
D A+B

Absorption: A(A + B) simplifies to

A B
B A+B
C AB
D A

Canonical SOP uses

A Only maxterms
B Only complements
C Only minterms
D Only constants

Canonical POS uses

A Only minterms
B Only maxterms
C Only XOR terms
D Only NAND terms

A K-map for 4 variables has cells

A 8
B 12
C 32
D 16

A K-map grouping rule requires group size

A Any size
B Prime number
C Power of two
D Always four

Gray code ordering in K-map helps because

A More cells exist
B Adjacent differ 1 bit
C Decimal becomes easier
D Carry reduces

A half adder cannot add

A Carry-in bit
B Two data bits
C Sum output
D Carry output

A full adder can be built using

A One NOT gate
B One OR gate
C Two half adders
D One AND gate

A multiplexer output equals

A All inputs together
B Always 0
C Always 1
D Selected input only

A demultiplexer routes input to

A Many outputs
B One chosen output
C All outputs
D No output

A decoder usually produces output in

A Binary form only
B Floating analog
C One-hot form
D Random pattern

A latch differs from flip-flop mainly by

A Level sensitivity
B Uses no gate
C Always synchronous
D Always combinational

A JK flip-flop avoids the problem of

A XOR ambiguity
B SR invalid state
C Parity mismatch
D Hex conversion

A toggle (T) flip-flop changes state when T is

A 0
B X only
C 1
D Z only

In basic ASCII, a character code uses

A 5 bits
B 6 bits
C 9 bits
D 7 bits

BCD is mainly useful when

A Doing binary-only math
B Showing decimal digits
C Making XOR gates
D Increasing CPU speed

Even parity bit is chosen so total 1s become

A Odd count
B Prime count
C Even count
D Zero count

A logic circuit without memory is classified as

A Combinational logic
B Sequential logic
C Register logic
D Storage logic

Leave a Reply

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