143
86.1k

320+ Digital Principles and System Design Solved MCQs

These multiple-choice questions (MCQs) are designed to enhance your knowledge and understanding in the following areas: Computer Science Engineering (CSE) .

51.

A variable on its own or in its complemented form is known as a                      

A. product term
B. literal
C. sum term
D. word
Answer» B. literal
Explanation: a literal is a single logic variable or its complement. for example — x, y, a’, z, x’ etc.
52.

Maxterm is the sum of                      of the corresponding Minterm with its literal complemented.

A. terms
B. words
C. numbers
D. nibble
Answer» A. terms
Explanation: maxterm is the sum of terms of the corresponding minterm with its literal complemented.
53.

Canonical form is a unique way of representing

A. sop
B. minterm
C. boolean expressions
D. pos
Answer» C. boolean expressions
Explanation: boolean expressions are represented through canonical form. an example of canonical form is a’b’c’ + ab’c + abc’.
54.

There are                            Minterms for 3 variables (a, b, c).

A. 0
B. 2
C. 8
D. 1
Answer» C. 8
Explanation: minterm is given by 2n. so, 23 = 8 minterms are required.
55.

                           expressions can be implemented using either (1) 2-level AND-OR logic circuits or (2) 2-level NAND logic circuits.

A. pos
B. literals
C. sop
D. pos
Answer» C. sop
Explanation: sop expressions can be implemented using either (1) 2-level and-or logic circuits or (2) 2-level nand logic circuits.
56.

There are              cells in a 4-variable K-map.

A. 12
B. 16
C. 18
D. 8
Answer» B. 16
Explanation: there are 16 = (24) cells in a 4-variable k-map.
57.

The K-map based Boolean reduction is based on the following Unifying Theorem: A + A’ = 1.

A. impact
B. non impact
C. force
D. complementarity
Answer» B. non impact
Explanation: the given expression a +a’ = 1 is based on non-impact unifying theorem.
58.

Each product term of a group, w’.x.y’ and w.y, represents the                         in that group.

A. input
B. pos
C. sum-of-minterms
D. sum of maxterms
Answer» C. sum-of-minterms
Explanation: in a minterm, each variable w, x or y appears once either as the variable itself or as the inverse. so, the given expression satisfies the property of sum of minterm.
59.

The prime implicant which has at least one element that is not present in any other implicant is known as

A. essential prime implicant
B. implicant
C. complement
D. prime complement
Answer» A. essential prime implicant
Explanation: essential prime implicants are prime implicants that cover an output of the function that no combination of other prime implicants is able to cover.
60.

Product-of-Sums expressions can be implemented using                        

A. 2-level or-and logic circuits
B. 2-level nor logic circuits
C. 2-level xor logic circuits
D. both 2-level or-and and nor logic circuits
Answer» D. both 2-level or-and and nor logic circuits
Explanation: product-of-sums expressions can be implemented using 2-level or-and & nor logic circuits.
61.

Each group of adjacent Minterms (group size in powers of twos) corresponds to a possible product term of the given                        

A. function
B. value
C. set
D. word
Answer» A. function
Explanation: each group of adjacent minterms (group size in powers of twos) corresponds to a possible product term of the given function.
62.

Don’t care conditions can be used for simplifying Boolean expressions in                        

A. registers
B. terms
C. k-maps
D. latches
Answer» C. k-maps
Explanation: don’t care conditions can be used for simplifying boolean expressions in k-maps which helps in pairing with 1/0.
63.

It should be kept in mind that don’t care terms should be used along with the terms that are present in

A. minterms
B. expressions
C. k-map
D. latches
Answer» A. minterms
Explanation: it should be kept in mind that don’t care terms should be used along with the terms that are present in minterms as well as maxterms which reduces the complexity of the boolean expression.
64.

Using the transformation method you can realize any POS realization of OR-AND with only.

A. xor
B. nand
C. and
D. nor
Answer» D. nor
Explanation: using the transformation method we can realize any pos realization of or-and with only nor.
65.

There are many situations in logic design in which simplification of logic expression is possible in terms of XOR and                                    operations.

A. x-nor
B. xor
C. nor
D. nand
Answer» A. x-nor
Explanation: there are many situations in logic design in which simplification of logic expression is possible in terms of xor and xnor operations.
66.

In case of XOR/XNOR simplification we have to look for the following                                

A. diagonal adjacencies
B. offset adjacencies
C. straight adjacencies
D. both diagonal and offset adjencies
Answer» D. both diagonal and offset adjencies
Explanation: in case of xor/xnor simplification we have to look for the following diagonal and offset adjacencies. xor gives output 1 when odd number of 1s are present in input while xnor gives output 1 when even number of 1s or all 0s are present in input.
67.

Entries known as                                mapping.

A. diagonal
B. straight
C. k
D. boolean
Answer» A. diagonal
Explanation: entries known as diagonal mapping. the diagonal mapping holds true when for any relation, there is a projection of product on the factor.
68.

The code where all successive numbers differ from their preceding number by single bit is                      

A. alphanumeric code
B. bcd
C. excess 3
D. gray
Answer» D. gray
Explanation: the code where all successive numbers differ from their preceding number by single bit is gray code. it is an unweighted code. the most important characteristic of this code is that only a single bit change occurs when going from one code number to next. bcd code is one in which decimal digits are represented by a group of 4-bits each, whereas, in excess-3 code, the decimal numbers are incremented by 3 and then written in their bcd format.
69.

How many AND gates are required to realize Y = CD + EF + G?

A. 4
B. 5
C. 3
D. 2
Answer» D. 2
Explanation: to realize y = cd + ef + g, two and gates are required and two or gates are required.
70.

The NOR gate output will be high if the two inputs are                      

A. 00
B. 01
C. 10
D. 11
Answer» A. 00
Explanation: in 01, 10 or 11 output is low if any of the i/p is high. so, the correct option will be 00.
71.

A full adder logic circuit will have                      

A. two inputs and one output
B. three inputs and three outputs
C. two inputs and two outputs
D. three inputs and two outputs
Answer» D. three inputs and two outputs
Explanation: a full adder circuit will add two bits and it will also accounts the carry input generated in the previous stage. thus three inputs and two outputs (sum and carry) are there. in case of half adder circuit, there are only two inputs bits and two outputs (sum and carry).
72.

How many two input AND gates and two input OR gates are required to realize Y = BD + CE + AB?

A. 3, 2
B. 4, 2
C. 1, 1
D. 2, 3
Answer» A. 3, 2
Explanation: there are three product terms. so, three and gates of two inputs are required. as only two input or gates are available, so two or gates are required to get the logical sum of three product terms.
73.

Which of following are known as universal gates?

A. nand & nor
B. and & or
C. xor & or
D. ex-nor & xor
Answer» A. nand & nor
Explanation: the nand & nor gates are known as universal gates because any digital circuit can be realized completely by using either of these two gates, and also they can generate the 3 basic gates and, or and not.
74.

Which of the circuits in figure (a to d) is the sum-of- products implementation of figure (e)?

A. x=ab’+a’b
B. x=(ab)’+ab
C. x=(ab)’+a’b’
D. x=a’b’+ab
Answer» D. x=a’b’+ab
Explanation: 1st output of and gate is = a’b’ 2nd and gate’s output is = ab and,
75.

The device shown here is most likely a                  

A. a
B. b
C. c
D. d
Answer» D. d
Explanation: sop means sum of products form which represents the sum of product terms having variables in complemented as well as in uncomplemented form. here, the diagram of d contains the or gate followed by the and gates, so it is in sop form.
76.

What type of logic circuit is represented by the figure shown below?

A. xor
B. xnor
C. and
D. xand
Answer» B. xnor
Explanation: after solving the circuit we get (a’b’)+ab as output, which is xnor operation. thus, it will produce 1 when inputs are even number of 1s or all 0s, and produce 0 when input is odd number of 1s.
77.

What is the indication of a short to ground in the output of a driving gate?

A. only the output of the defective gate is affected
B. there is a signal loss to all load gates
C. the node may be stuck in either the high or the low state
D. the affected node will be stuck in the high state
Answer» B. there is a signal loss to all load gates
Explanation: short to ground in the output of a driving gate indicates of a signal loss to all load gates. this results in information being disrupted and loss of data.
78.

For the device shown here, assume the D input is LOW, both S inputs are LOW and the input is LOW. What is the status of the Y’ outputs?

A. d
B. a
C. c
D. b
Answer» A. d
Explanation: when both inputs are same then the o/p is high for a xnor gate.
79.

Which of the following combinations of logic gates can decode binary 1101?

A. one 4-input and gate
B. one 4-input and gate, one inverter
C. one 4-input and gate, one or gate
D. one 4-input nand gate, one inverter
Answer» B. one 4-input and gate, one inverter
Explanation: for decoding any number output must be high for that code and this is possible in one 4-
80.

The carry propagation can be expressed as

A. cp = ab
B. cp = a + b
C. all but y0 are low
D. all but y0 are high
Answer» B. cp = a + b
Explanation: this happens in parallel adders (where we try to add numbers in parallel via more than one
81.

3 bits full adder contains                  

A. 3 combinational inputs
B. 4 combinational inputs
C. 6 combinational inputs
D. 8 combinational inputs
Answer» D. 8 combinational inputs
Explanation: full adder is a combinational circuit with 3 input bits and 2 output bits carry and sum. three bits full adder requires 23 = 8 combinational circuits.
82.

The basic building blocks of the arithmetic unit in a digital computers are                          

A. subtractors
B. adders
C. multiplexer
D. comparator
Answer» B. adders
Explanation: the basic building blocks of the arithmetic unit in a digital computers are adders. since, a parallel adder is constructed with a number of full- adder circuits connected in cascade. by controlling the data inputs to the parallel adder, it is possible to obtain different types of arithmetic operations.
83.

A digital system consists of            types of circuits.

A. 2
B. 3
C. 4
D. 5
Answer» A. 2
Explanation: a digital system consists of two types of circuits and these are combinational and sequential logic circuit. combinational circuits are the ones
84.

In a sequential circuit, the output at any time depends only on the input values at that time.

A. past output values
B. intermediate values
C. both past output and present input
D. present input values
Answer» C. both past output and present input
Explanation: in a sequential circuit, the output at any time depends on the present input values as well as past output values. it also depends on clock pulses depending whether it’s synchronous or asynchronous sequential circuits.
85.

The design of an ALU is based on                          

A. sequential logic
B. combinational logic
C. multiplexing
D. de-multiplexing
Answer» B. combinational logic
Explanation: the design of an alu is based on combinational logic. because the unit has a regular pattern, it can be broken into identical stages connected in cascade through carries.
86.

If the two numbers are unsigned, the bit conditions of interest are the              carry and a possible             result.

A. input, zero
B. output, one
C. input, one
D. output, zero
Answer» D. output, zero
Explanation: if the two numbers are unsigned, the bit conditions of interest are the output carry and a possible zero result.
87.

If the two numbers include a sign bit in the highest order position, the bit conditions of interest are the sign of the result, a zero indication and                        

A. an underflow condition
B. a neutral condition
C. an overflow condition
D. one indication
Answer» C. an overflow condition
Explanation: if the two numbers include a sign bit in the highest order position, the bit conditions of interest are the sign of the result, a zero indication and an overflow condition.
88.

In parts of the processor, adders are used to calculate

A. addresses
B. table indices
C. increment and decrement operators
D. all of the mentioned
Answer» D. all of the mentioned
Explanation: adders are used to perform the operation of addition. thus, in parts of the processor, adders are used to calculate addresses, table indices, increment and decrement operators, and similar operations.
89.

Total number of inputs in a half adder is

A. 2
B. 3
C. 4
D. 1
Answer» A. 2
Explanation: total number of inputs in a half adder is two. since, an exor gates has 2 inputs and carry is connected with the input of exor gates. the output of half-adder is also 2, them being, sum and carry. the output of exor gives sum and that of and gives carry.
90.

In which operation carry is obtained?

A. subtraction
B. addition
C. multiplication
D. both addition and subtraction
Answer» B. addition
Explanation: in addition, carry is obtained. for example: 1 0 1 + 1 1 1 = 1 0 0; in this example carry is
91.

If A and B are the inputs of a half adder, the carry is given by                      

A. a and b
B. a or b
C. a xor b
D. a ex-nor b
Answer» A. a and b
Explanation: if a and b are the inputs of a half adder, the carry is given by: a(and)b, while the sum is given by a xor b.
92.

Half-adders have a major limitation in that they cannot                      

A. accept a carry bit from a present stage
B. accept a carry bit from a next stage
C. accept a carry bit from a previous stage
D. accept a carry bit from the following stages
Answer» C. accept a carry bit from a previous stage
Explanation: half-adders have a major limitation in that they cannot accept a carry bit from a previous stage, meaning that they cannot be chained together to add multi-bit numbers. however, the two output bits of a half-adder can also represent the result a+b=3 as sum and carry both being high.
93.

If A, B and C are the inputs of a full adder then the carry is given by                      

A. a and b or (a or b) and c
B. a or b or (a and b) c
C. (a and b) or (a and b)c
D. a xor b xor (a xor b) and c
Answer» A. a and b or (a or b) and c
Explanation: if a, b and c are the inputs of a full adder then the carry is given by a and b or (a or
94.

How many AND, OR and EXOR gates are required for the configuration of full adder?

A. 1, 2, 2
B. 2, 1, 2
C. 3, 1, 2
D. 4, 0, 1
Answer» B. 2, 1, 2
Explanation: there are 2 and, 1 or and 2 exor gates required for the configuration of full adder, provided using half adder. otherwise, configuration of full adder would require 3 and, 2 or and 2 exor.
95.

How many outputs are required for the implementation of a subtractor?

A. 1
B. 2
C. 3
D. 4
Answer» B. 2
Explanation: there are two outputs required for the
96.

Let the input of a subtractor is A and B then what the output will be if A = B?

A. 0
B. 1
C. a
D. b
Answer» A. 0
Explanation: the output for a = b will be 0. if a = b, it means that a = b = 0 or a = b = 1. in both of the situation subtractor gives 0 as the output.
97.

Let A and B is the input of a subtractor then the output will be                        

A. a xor b
B. a and b
C. a or b
D. a exnor b
Answer» A. a xor b
Explanation: the subtractor has two outputs borow and difference. since, the difference output of a subtractor is given by ab’ + ba’ and this is the output of a xor gate. so, the final difference output is ab’ + ba’.
98.

Let A and B is the input of a subtractor then the borrow will be                        

A. a and b’
B. a’ and b
C. a or b
D. a and b
Answer» B. a’ and b
Explanation: the borrow of a subtractor is received through and gate whose one input is inverted. on
99.

The full subtractor can be implemented using

A. two xor and an or gates
B. two half subtractors and an or gate
C. two multiplexers and an and gate
D. two comparators and an and gate
Answer» B. two half subtractors and an or gate
Explanation: a full subtractor has 3 input bits and two outputs bits borrow and difference. the full subtractor can be implemented using two half subtractors and an or gate.
100.

The output of a subtractor is given by (if A, B and X are the inputs).

A. a and b xor x
B. a xor b xor x
C. a or b nor x
D. a nor b xor x
Answer» B. a xor b xor x
Explanation: the difference output of a subtractor is given by (if a, b and x are the inputs) a xor b xor x.

Done Studing? Take A Test.

Great job completing your study session! Now it's time to put your knowledge to the test. Challenge yourself, see how much you've learned, and identify areas for improvement. Don’t worry, this is all part of the journey to mastery. Ready for the next step? Take a quiz to solidify what you've just studied.