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

Last updated on Apr 7, 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:

What is the minimum number of NAND gates required to get the function of an OR gate?

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

Answer (Detailed Solution Below)

Option 3 : 3

Basic Gates Question 8 Detailed Solution

OR function: F(a, b) = a + b

F1 R.S Pallavi 21-Nov-2019 D 4

Circuit with output:

F1 R.S Pallavi 21-Nov-2019 D 5

Number of two input NAND gate needed is 3.

Basic Gates Question 9:

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 9 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 10:

A 2 input gate functionality is to be determined. It is known that output y = 1, when A = B = 0 and output Y = 0, when A = B = 1.

The given gate is:

  1. EXNOR
  2. NAND
  3. NOR
  4. Either NAND or NOR

Answer (Detailed Solution Below)

Option 4 : Either NAND or NOR

Basic Gates Question 10 Detailed Solution

Drawing the truth table for all the given options

rrb je ec 63 13 Q DE 7

From the given conditions in question

Y = 1, A = B = 0

Y = 0, A = B = 1

The condition is satisfied by both NAND and NOR gates.

Hence, the gate can be either NAND or NOR
Get Free Access Now
Hot Links: teen patti master 51 bonus teen patti master gold teen patti rich