πŸ“Š Digital Principles and System Design
Q. 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
πŸ’¬ Discuss
βœ… Correct 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).

πŸ“Š Digital Principles and System Design
Q. 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
πŸ’¬ Discuss
βœ… Correct 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.

πŸ“Š Digital Principles and System Design
Q. Which of following are known as universal gates?
  • (A) nand & nor
  • (B) and & or
  • (C) xor & or
  • (D) ex-nor & xor
πŸ’¬ Discuss
βœ… Correct 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.

πŸ“Š Digital Principles and System Design
Q. 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
πŸ’¬ Discuss
βœ… Correct Answer: (D) x=a’b’+ab

Explanation: 1st output of and gate is = a’b’ 2nd and gate’s output is = ab and,

πŸ“Š Digital Principles and System Design
Q. The device shown here is most likely a
  • (A) a
  • (B) b
  • (C) c
  • (D) d
πŸ’¬ Discuss
βœ… Correct 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.

πŸ“Š Digital Principles and System Design
Q. The addition 1+1 gives 0 as a result.
  • (A) true
  • (B) false
  • (C) ---
  • (D) ---
πŸ’¬ Discuss
βœ… Correct Answer: (A) true

Explanation: the two result obtained is 0 with a carry of 1. this carry is transferred to the next higher column.

πŸ“Š Digital Principles and System Design
Q. The result of 0*1 in binary is
  • (A) 0
  • (B) 1
  • (C) invalid
  • (D) 10
πŸ’¬ Discuss
βœ… Correct Answer: (A) 0

Explanation: the binary multiplication of any number with 0 will give the result 0 itself. any binary number when multiplied by 0 gives 0 only.

πŸ“Š Digital Principles and System Design
Q. The multiplication of 110 * 111 is performed. What is a general term used for 111?
  • (A) dividend
  • (B) quotient
  • (C) multiplicand
  • (D) multiplier
πŸ’¬ Discuss
βœ… Correct Answer: (D) multiplier

Explanation: 111 is called the multiplier.

πŸ“Š Digital Principles and System Design
Q. What do you call the intermediate terms in binary multiplication?
  • (A) multipliers
  • (B) mid terms
  • (C) partial products
  • (D) multiplicands
πŸ’¬ Discuss
βœ… Correct Answer: (C) partial products

Explanation: the intermediate terms are called partial terms. the mid terms obtained in the binary multiplications are the partial ones whereas the answer obtained is called the final product.

πŸ“Š Digital Principles and System Design
Q. The result that is smaller than the smallest number obtained is referred to as
  • (A) nan
  • (B) underflow
  • (C) smallest
  • (D) mantissa
πŸ’¬ Discuss
βœ… Correct Answer: (B) underflow

Explanation: it is referred to as underflow. nan stands for not a number. mantissa is the part after the decimal.

Jump to