0

Logic Gates and Combination of Gates

Attempted 0/15 Correct 0 Score 0

If OR gate has 6 inputs, then the number of input words in the truth table is

  1. 8

  2. 64

  3. 16

  4. 4

  5. 128


Correct Option: B
Explanation:

Because 26=64.

Which of the following digital logic gates is build by using single transistor?

  1. FOR

  2. OR

  3. NOT

  4. AND

  5. NAND


Correct Option: C
Explanation:

NOT Gate is like an inverter it is because when we gives one to the input of not gate we get zero i.e, inverts of the input. Transistor is acts as a switch means it is used for ON and OFF. This is can be done by using NOT gate.

Which of the following gates has the exact inverse output of the OR gate for all possible input combinations?

  1. NOT

  2. NOR

  3. AND

  4. NAND

  5. OR gate


Correct Option: B
Explanation:

The NOR gate is a combination OR gate followed by an inverter. Its output is true, if both inputs are false. Otherwise, the output is false.

The logic gate that will have HIGH or "1" at its output when any one (or more) of its inputs is HIGH is a(n):

  1. EXOR gate

  2. AND gate

  3. OR gate

  4. NOR gate

  5. NOT gate


Correct Option: C
Explanation:

The OR gate is an electronic circuit that gives a high output (1) if one or more of its inputs are high. A plus (+) is used to show the OR operation.

What is a group of 4 bits called?

  1. Double word

  2. Word

  3. Byte

  4. Crumb

  5. Nibble


Correct Option: E
Explanation:

A group of 4 bits is called a nibble.

Which of the following examples indicates the commutative law of multiplication?

  1. (A + B) + C = A + (B + C)

  2. A + B = B + A

  3. A (B + C) = A B + A C

  4. A + A = A

  5. A + A B = A


Correct Option: B
Explanation:

Commutative: A+ B = B + A

How many input possibilities are there for a 3-input NOR gate?

  1. 64

  2. 4

  3. 8

  4. 16

  5. 32


Correct Option: C
Explanation:

A B C 0 0 0 0 0 10 1 0 0 1 1 1 0 01 0 1 1 1 01 1 1  There are " 8" possible input combinations or 23

What will be the value of three inputs A, B, and C, of AND gate, when output obtained is high?

  1. A = 1, B = 1, C = 0

  2. A = 1, B = 0, C = 1

  3. A = 0, B = 0, C = 0

  4. A = 0, B = 0, C = 1

  5. A = 1, B = 1, C = 1


Correct Option: E
Explanation:

Output of an AND gate is high when all inputs are high a = 1, b = 1, c = 1. Output of AND gate is = A*B*C = 1*1*1 = 1.

For a 3-input AND gate, write the Boolean expression.

  1. X = AB

  2. X = ABC

  3. X = A + B + C

  4. X = A + B

  5. X = A + B + C + D


Correct Option: B
Explanation:

As per the question 3 inputs so the inputs be A, B and C then according to AND gate, it is defines the product.  So, for this three inputs it is X = ABC.

Which of the following is a universal logic gate?

  1. OR

  2. NAND

  3. NOT

  4. AND

  5. EX-OR


Correct Option: B
Explanation:

NAND and NOR are universal gates. Any function can be implemented using only NAND or only NOR gates.

Logically, the output of a NOR gate would have the same Boolean expression as a(n)_________.

  1. NAND gate

  2. OR gate by an inverter

  3. AND gate

  4. NOR gate

  5. NOT gate


Correct Option: B
Explanation:

OR gate is typically implemented as a NOR gate followed by an inverter.

The hexadecimal system uses the power of

  1. 16

  2. 8

  3. 10

  4. 2

  5. 4


Correct Option: A
Explanation:

Hex is a base 16 system. In base 16, every position in a number represents a number times a power of sixteen.

What will be the value of three inputs A, B and C of OR gate, when output obtained is low?

  1. A = 0, B = 0, C = 0

  2. A = 1, B = 0, C = 1

  3. A = 0, B = 0, C = 1

  4. A = 1, B = 0, C = 0

  5. A = 1, B = 1, C = 1


Correct Option: A
Explanation:

If A = 0, B = 0, C = 0 then A*B*C = 0*0*0 = 0 (since OR gate performs addition).

Which of the following is a volatile memory?

  1. RAM

  2. EPROM

  3. ROM

  4. EEPROM

  5. PROM


Correct Option: A
Explanation:

Volatile memory is a type of memory (storage) whose contents are erased when the system's power is turned off or interrupted. For example, RAM is a volatile memory.

A byte consists of how many bits?

  1. 64

  2. 32

  3. 4

  4. 8

  5. 16


Correct Option: D
Explanation:

A byte consists of 8 adjacent binary digits.

- Hide questions