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

A number system that uses base 2 and represents data using two stable states in circuits is mainly called which system in computing?

A Decimal system
B Binary system
C Octal system
D Hex system

In hexadecimal representation, the digit ‘C’ is used frequently in memory dumps. What decimal value does ‘C’ represent?

A Ten value
B Eleven value
C Twelve value
D Thirteen value

When writing 0b1011 in programming, the prefix is used to clearly indicate which base for correct interpretation?

A Base two
B Base eight
C Base ten
D Base sixteen

In number conversion, grouping binary bits into sets of three helps convert quickly into which number system without long division?

A Decimal system
B Hex system
C Octal system
D BCD system

While converting binary to hexadecimal quickly, bits are grouped from the right side into sets of how many bits per group?

A Two bits
B Three bits
C Eight bits
D Four bits

Which statement correctly describes the range of an unsigned n-bit number used in many basic digital registers?

A 0 to 2ⁿ−1
B −2ⁿ to 2ⁿ
C −2ⁿ⁻¹ to 2ⁿ⁻¹
D 1 to 2ⁿ

A 2’s complement system is preferred in computers mainly because it allows subtraction to be performed using what single operation?

A Only shifting
B Only division
C Only addition
D Only AND

In 2’s complement method, the step performed after taking 1’s complement of a binary number is to add what value to it?

A Add 1
B Add 0
C Add 2
D Add 10

In 1’s complement representation, a special issue occurs because zero can be represented in how many different ways?

A One way
B Two ways
C Three ways
D Four ways

In signed 2’s complement numbers, the most significant bit is primarily used to show what information about the number?

A Parity status
B Decimal weight
C Gate output
D Sign of value

If a binary number is shifted left by one position, the numeric value is generally multiplied by which factor (ignoring overflow)?

A Multiply by 2
B Multiply by 1
C Multiply by 8
D Multiply by 16

If a binary number is shifted right by one position, the numeric value is generally divided by which factor (ignoring fractions)?

A Divide by 8
B Divide by 10
C Divide by 2
D Divide by 16

In a 2-input truth table, how many total input combinations must be listed to cover all possibilities?

A Two combos
B Four combos
C Three combos
D Eight combos

A logic gate that gives output 1 only when both inputs are 0 is which gate?

A NAND gate
B XOR gate
C AND gate
D NOR gate

The NAND gate output becomes 0 only in which input condition for a 2-input NAND?

A Inputs 00
B Inputs 01
C Inputs 11
D Inputs 10

A gate often used for equality checking because it outputs 1 when both inputs match is called?

A XNOR gate
B XOR gate
C OR gate
D NOT gate

The Boolean identity law for AND states that A·1 equals which simplified result?

A 0
B A
C 1
D A’

According to absorption law, the expression A + A·B simplifies to which output?

A B only
B A·B
C A only
D A+B

According to De Morgan’s law, the complement of (A + B) is equal to which expression?

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

The rule (A·B)’ = A’ + B’ is an example of which Boolean concept?

A Commutative law
B De Morgan law
C Null law
D Identity law

A Karnaugh map mainly helps in digital logic by doing what task more easily than algebra alone?

A Text encoding
B Voltage regulation
C Image conversion
D Expression simplification

In K-map grouping, a valid group size must always be which kind of number?

A Any number
B Prime number
C Power of two
D Odd number

A half adder circuit adds two single-bit numbers and produces sum and carry. Which gate gives its sum output?

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

A full adder can be built using two half adders and an additional gate to combine carries. Which gate commonly combines the carries?

A XOR gate
B NAND gate
C OR gate
D XNOR gate

A multiplexer is used to select one of many inputs and send it to one output. What controls the selection?

A Clock pulses
B Select lines
C Parity bits
D MSB lines

A demultiplexer takes one input and routes it to one of many outputs. What decides which output gets the signal?

A Base value
B Hex digits
C Carry bit
D Select lines

In a decoder, an n-bit binary input activates typically how many output lines at a time in normal operation?

A One line
B All lines
C Two lines
D Four lines

An encoder converts a single active input line into a coded output. Which type is used when multiple inputs may be active?

A Plain encoder
B Gray encoder
C Priority encoder
D BCD encoder

ASCII is a standard code mainly designed to represent which type of data in computers?

A Decimal fractions
B Logic gates
C Power levels
D Text characters

BCD is used in many display systems because it represents each decimal digit using how many bits?

A Four bits
B Two bits
C Three bits
D Eight bits

A parity bit is added to a data word mainly to support which basic function in communication?

A Data encryption
B Error detection
C Data compression
D Speed boosting

If even parity is used and the data already contains an even number of 1s, the parity bit should be set to which value?

A Set to 1
B Set to 2
C Set to 0
D Set to 8

A major limitation of simple parity checking is that it may fail when errors occur in which pattern?

A Two-bit error
B Single-bit error
C No-bit error
D MSB error

In BCD arithmetic, if a 4-bit sum exceeds 9, a correction is applied by adding which value?

A Add 3
B Add 5
C Add 9
D Add 6

A flip-flop is considered a basic building block of sequential circuits because it stores how much information?

A Two bits
B Four bits
C One bit
D Eight bits

A latch differs from an edge-triggered flip-flop mainly because a latch is sensitive to which condition?

A Level enable
B Voltage limit
C Hex digits
D Parity rule

In a JK flip-flop, when J = 1 and K = 1, what happens at each active clock event?

A Set output
B Toggle output
C Reset output
D Hold output

In a D flip-flop, the next output state after clock edge is mainly equal to what value?

A Previous Q
B NOT D
C D input
D Carry out

A basic classification says a circuit is combinational when its output depends on only what factor?

A Present inputs
B Past history
C Clock count
D Stored parity

A sequential circuit differs from combinational because it depends on present inputs and also what additional factor?

A Power supply
B Screen size
C File format
D Past state

Converting a binary number to decimal is usually done by summing which weights of positions?

A Powers of 10
B Powers of 8
C Powers of 2
D Powers of 16

The binary number 10000000₂ represents decimal 128 in unsigned form. In 8-bit 2’s complement, the same pattern represents which value?

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

When extending a negative 2’s complement number to more bits, which action preserves its value correctly?

A Add zeros left
B Repeat sign bit
C Flip all bits
D Add parity bit

A common way to implement NOT using only NAND gates is by connecting its inputs in what manner?

A Inputs separate
B Input left open
C Inputs grounded
D Inputs tied same

A common way to implement NOT using only NOR gates is by connecting its inputs in what manner?

A Inputs different
B Inputs floating
C Inputs tied same
D Inputs inverted

In binary subtraction, the borrow concept means the next higher bit contributes what value to the current bit place?

A Adds 1
B Adds 2
C Adds 8
D Adds 16

In binary multiplication, multiplying any number by 1 gives the same number, and multiplying by 0 gives zero. This is because each multiplier bit is only what?

A 0 or 1
B 0 to 9
C A to F
D Any digit

In Boolean algebra, the distributive law allows which kind of transformation during simplification?

A Split OR over NOT
B Split NOT over XOR
C Split AND over OR
D Split XOR over AND

A full adder produces carry-out when at least how many of its three inputs are 1?

A Two inputs
B One input
C Three inputs
D Zero inputs

A logic gate diagram is often verified using a truth table because a truth table provides what complete information?

A Wire length only
B CPU instruction set
C Memory size
D All input cases

Leave a Reply

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