Basic Gates MCQ Quiz in मल्याळम - Objective Question with Answer for Basic Gates - സൗജന്യ PDF ഡൗൺലോഡ് ചെയ്യുക

Last updated on Mar 13, 2025

നേടുക Basic Gates ഉത്തരങ്ങളും വിശദമായ പരിഹാരങ്ങളുമുള്ള മൾട്ടിപ്പിൾ ചോയ്സ് ചോദ്യങ്ങൾ (MCQ ക്വിസ്). ഇവ സൗജന്യമായി ഡൗൺലോഡ് ചെയ്യുക Basic Gates MCQ ക്വിസ് പിഡിഎഫ്, ബാങ്കിംഗ്, എസ്എസ്‌സി, റെയിൽവേ, യുപിഎസ്‌സി, സ്റ്റേറ്റ് പിഎസ്‌സി തുടങ്ങിയ നിങ്ങളുടെ വരാനിരിക്കുന്ന പരീക്ഷകൾക്കായി തയ്യാറെടുക്കുക

Latest Basic Gates MCQ Objective Questions

Top Basic Gates MCQ Objective Questions

Basic Gates Question 1:

Which logical gate is known as Universal gate?

  1. Ex–OR
  2. AND
  3. NAND
  4. NOT

Answer (Detailed Solution Below)

Option 3 : NAND

Basic Gates Question 1 Detailed Solution

Key Points

 Universal gate:  

A universal gate is a gate that can implement any Boolean function without the need to use any other gate type. The NAND and NOR gates are universal gates. In practice, this is advantageous since NAND and NOR gates are economical and easier to fabricate and are the basic gates used in all IC digital logic families.

Hence the correct answer is NAND.

Basic Gates Question 2:

For all possible input combinations, the exact reverse output of OR gate can be obtained by _____ gate.

  1. EX-NOR
  2. EX-OR
  3. NOR
  4. NOT

Answer (Detailed Solution Below)

Option 3 : NOR

Basic Gates Question 2 Detailed Solution

NOR gate is the exact reverse of an OR gate.

OR GATE:

Symbol:

F1 U.B Madhu 15.11.19 D 15

Truth Table:

Input A

Input B

Output

Y = A + B

0

0

0

0

1

1

1

0

1

1

1

1

 

Output Equation: Y = A + B

Key Points: The output is low only when both the inputs are low.

∴ The given gate is either OR gate or AND gate.

NOR Gate:

The truth table for NOR gate:

A

B

\(\overline {A + B} = Q\)

0

0

1

0

1

0

1

0

0

1

1

0

 

Note: It gives a low output if either input A or B is high, otherwise, it gives a high output (1).

Important Points

AND GATE

Symbol:

F1 U.B Madhu 15.11.19 D 14

Truth Table:

Input A

Input B

Output

Y = A.B

0

0

0

0

1

0

1

0

0

1

1

1

 

Output Equation: Y = A.B

Key Points: The output is high only when both the inputs are high.

XOR GATE

Symbol:

F1 U.B Madhu 15.11.19 D 18

Truth Table:

Input A

Input B

Output

Y = A ⊕ B

0

0

0

0

1

1

1

0

1

1

1

0

 

Output Equation: \(Y = {\bf{A}} \oplus {\bf{B}} = \bar AB + \bar A B\)

Key Points: 

1) If B is always High, the output is the inverted value of the other input A, i.e. A̅.

1) The output is low when both the inputs are the same. 

2) The output is high when both the inputs are different.

NAND GATE

Symbol:

F1 U.B Madhu 15.11.19 D 16

Truth Table:

Input A

Input B

Output

\(Y = \overline {AB}\)

0

0

1

0

1

1

1

0

1

1

1

0

 

Output Equation: \(Y = \overline {A.B} = \overline A + \overline B\)

Key Points:

1) If A is always High, the output is the inverted value of the other input B, i.e. B̅

2) The output is low only when both the inputs are high

3) It is a universal gate

NOT GATE:

Symbol:

F1 U.B Madhu 15.11.19 D 13

Truth Table:

Input (A)

Output (A̅)

0 (Low)

1 (High)

1 (High)

0 (low)

 

Output Equation: Y = A̅

Key Points: The output of NOT gate is an invert of the input

Basic Gates Question 3:

consider the following Boolean expression for F over two variables P and Q:

F(P, Q) = ((1 ⊕ P) ⊕(P⊕Q)) ⊕((P⊕Q) ⊕(Q⊕0) )

The equivalent expression for F is 

  1. P + Q
  2. \(\overline {P + Q} \)
  3. \(P \oplus Q\)
  4. \(\overline {P \oplus Q} \)

Answer (Detailed Solution Below)

Option 4 : \(\overline {P \oplus Q} \)

Basic Gates Question 3 Detailed Solution

Concept:

XOR operator ⊕ is both commutative and associative.

A ⊕ B = AB̅ + A̅.B

A ⊕ A = 0

1 ⊕ A = A̅

0 ⊕ A = A

Calculation:

F(P, Q) = ((1 ⊕ P) ⊕(P⊕Q)) ⊕((P⊕Q) ⊕(Q⊕0) )

F(P, Q) = 1 ⊕ (P ⊕ P) ⊕ Q ⊕ P⊕ (Q  ⊕ Q) ⊕ 0

F(P, Q) = (1 ⊕ 0) ⊕ Q ⊕ P⊕ (0 ⊕ 0)

F(P, Q) = (1 ⊕ Q) ⊕ (P⊕ 0)

F(P, Q) = Q̅  ⊕  P

F(P, Q) = Q̅. P̅ + Q.P

F(P, Q) = P ⊙ Q 

F(P, Q) = \(\overline {P \oplus Q} \)

Basic Gates Question 4:

_______ algorithm is used to multiply two signed binary numbers in 2’s complement form.

  1. Booth
  2. Furer
  3. Knuth
  4. Strassen

Answer (Detailed Solution Below)

Option 1 : Booth

Basic Gates Question 4 Detailed Solution

  • Booth's algorithm is of interest in the study of computer architecture
  • In 1950, the Booth’s algorithm was invented by Andrew Donald Booth while doing research on crystallography at Birkbeck College in Bloomsbury, London
  • Booth's multiplication algorithm is a multiplication algorithm that multiplies two signed binary numbers in two's complement notation

Basic Gates Question 5:

For find the work of NAND gate (or transformation of circuit of NAND gate), how many minimum number of NOR gate is needed? 

  1. 2
  2. 3
  3. 1
  4. 4

Answer (Detailed Solution Below)

Option 4 : 4

Basic Gates Question 5 Detailed Solution

The correct answer is 4

Key Points 

  • Here's how to realize a NAND gate using NOR gates:
    • Two NOR gates can be used to form an INVERTER (or NOT gate).
  • Another two NOR gates can be used to form a basic OR gate.
  • System setup:
    • Inputs A and B of the NAND gate are each fed into their own NOR-based inverters, thus creating NOT-A and NOT-B.
    • NOT-A and NOT-B are then fed into the NOR-based OR gate, yielding the equivalent of an NAND operation.

Therefore, the answer is: 4) 4

F2 Savita State G 5-4-24 D2

Basic Gates Question 6:

Assume that x is the minimum number of NAND gates required to realize Majority Function (3 boolean variable) when the fan-in capacity of NAND gate is restricted to 2 and y is the minimum number of NAND gates required to realize Majority Function when fan-capacity of NAND gate can be more than 2. Then the value of x+y is – 

Answer (Detailed Solution Below) 10

Basic Gates Question 6 Detailed Solution

Explanation:

Assume variable names are as a, b,c

Majority Function means to take those expressions which have more number of 1's than 0's.

Input Output
000 0
001 0
010 0
011 1
100 0
101 1
110 1
111 1

 

F(a,b,c) =a̅bc + ab̅c + abc̅ + abc

minimization using K-map:

F1 Anket Madhuri 03.07.2021 D1

F(a,b,c) =ab + bc + ca

2-input NAND gate required for ab + bc + ca

b(a + c) + ca

((b.(a'.c')')'.(c.a)')'

So, 2-input NAND gate require to realize Majority Function are 6

F1 Anket Madhuri 03.07.2021 D2

3-input NAND gate required for ab + bc + ca

((a.b)'.(b.c)'.(c.a)')'

So, 3-input NAND gate require to realize Majority Function are 4

F1 Anket Madhuri 03.07.2021 D3

Total NAND gates = 2-input NAND gate +3-input NAND gate

Total NAND gates =6 + 4 = 10

Basic Gates Question 7:

The solitary purpose of NOT gate is which of the following?

  1. To stop signal
  2. Invert input signal
  3. Act as a universal gate
  4. None of the three

Answer (Detailed Solution Below)

Option 2 : Invert input signal

Basic Gates Question 7 Detailed Solution

Concept:

NOT gate is an ‘Inverter Gate’. The output is the complemented form of the input form i.e. it returns the opposite value to every value entered. Therefore, in order to get a ‘high’ output, the input required is ‘low’.

Different logic gates and their symbols are shown

 

Phy Set 2 Rishi 15Q images Q14a

Basic Gates Question 8:

The output of an AND gate with three inputs, A, B and C, is HIGH when ______.

  1. A = 1, B = 1, C = 0
  2. A = 0, B = 0, C = 0
  3. A = 1, B = 1, C = 1
  4. A = 1, B = 0, C = 1
  5. A = 1, B = 0, C = 0

Answer (Detailed Solution Below)

Option 3 : A = 1, B = 1, C = 1

Basic Gates Question 8 Detailed Solution

The truth table of three input AND gate is shown:

Inputs

Output

0 0 0

0

0 0 1

0

0 1 0

0

0 1 1

0

1 0 0

0

1 0 1

0

1 1 0

0

1 1 1

1

 

The Output is high only when all the inputs are high

Basic Gates Question 9:

In a PLA, what components are used to implement the combinational logic functions?

  1. AND gates and OR gates
  2. NAND gates and XOR gates
  3. NOR gates and XNOR gates
  4. NOT gates and multiplexers 

Answer (Detailed Solution Below)

Option 1 : AND gates and OR gates

Basic Gates Question 9 Detailed Solution

The correct answer is AND gates and OR gates

Key Points

  • In a Programmable Logic Array (PLA), combinational logic functions are implemented using programmable AND gates and OR gates.
  • Input variables are fed into AND gates, where they are combined, and the outputs of these AND gates are then connected to OR gates to produce the final output.
  • This flexibility allows designers to customize the circuit for specific logic functions. Therefore, the correct answer is option 1: AND gates and OR gates.

F5 Teaching  Priya 9-2-24 1 

Basic Gates Question 10:

The simplified expression of

F(A, B) = [A ⊙ B] ⊕ [A+B] represents

  1. two input NOR gate
  2. three input NAND gate
  3. three input NOR gate
  4. two input NAND gate

Answer (Detailed Solution Below)

Option 4 : two input NAND gate

Basic Gates Question 10 Detailed Solution

f(A, B) = [A ʘ B] ⊕ [A+B]

\(f\left( {A,B} \right) = \left( {\bar A\bar B + AB} \right)\oplus\left( {{\rm{A}} + {\rm{B}}} \right)\)

\(f\left( {A,B} \right) = \;\overline {\left( {\bar A\bar B + AB} \right)} \left( {A + B} \right){\rm{\;}}\left( {\bar A\bar B + {\rm{AB}}} \right)\left( {\overline {A + B} } \right)\)

\(f\left( {A,\;B} \right) = \;\overline {\bar A\bar B} \;\left( {\overline {AB} } \right)\left( {A + B} \right) + \left( {\bar A\bar B + {\rm{AB}}} \right)\left( {\bar A\bar B} \right)\;\)

\(f\left( {A,\;B} \right) = \left( {A + B} \right)\left( {\bar A + \;\bar B} \right) + \;\bar A\bar B\)

\(f\left( {A,B} \right) = A\bar B + \;\bar AB + \;\bar A\bar B\)

\(f\left( {A,\;B} \right) = \;A\bar B + \bar A\)

\(f\left( {A,\;B} \right) = \;\bar A + \;\bar B\)                     [because, A + A’B = A + B]

It can also be written as  :

\(f\left( {A,\;B} \right) = \;\overline {AB} \)

Two input NAND gate is required to implement this function.

F1 R.S 17.9.20 Pallavi D2

Get Free Access Now
Hot Links: teen patti all games teen patti master 2023 teen patti master downloadable content