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

Last updated on Mar 10, 2025

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

Latest Adder MCQ Objective Questions

Top Adder MCQ Objective Questions

Adder Question 1:

Consider an eight-bit ripple-carry adder for computing the sum of A and B, where A and B are integers represented in 2’s complement form. If the decimal value of A is one, the decimal value of B that leads to the longest latency for the sum to stabilize is _______.

Answer (Detailed Solution Below) -1

Adder Question 1 Detailed Solution

Concept:

Longest latency for the sum to stabilize is the maximum time or delay a ripple carry adder take to add A and B.

Explanation:

Given A = 1 in decimal form,

In 2’s complement form, binary representation of A in binary form = 0000 0001.

In case of ripple carry adder, for sum we need 2 XOR gates.

For the longest latency, we must have Cin = 1 at every stage of the ripple carry adder.

Here, we have to find the value of B such that we get Cin= 1 at every stage and Cout = 1 at the last stage.

Maximum delay is when we take B = -1 in decimal (1111 1111 – in binary)

On adding A + B, we get a carry up to the carry flag i.e. longest latency.

Adder Question 2:

A half adder is implemented with XOR and AND gates. A full adder is implemented with two half adders and one OR gate. The propagation delay of an XOR gate is twice that of an AND/OR gate. The propagation delay of an AND/OR gate is 1.2 microseconds. A 4 - bit ripple - carry binary adder is implemented by using four full adders. The total propagation time of this 4 - bit binary adder in microseconds is ________.(Do not consider parallelization).

Answer (Detailed Solution Below) 19.2

Adder Question 2 Detailed Solution

half Adder

ya28

Full Addere using 2 half adder and OR gate

ya29

Hence processing delay is 4.8, given all the bits are added by full adder, total processing delay will be 4 × 4.8 = 19.2

Also first bit could be added using half adder in that case processing delay will be 16.8

Adder Question 3:

Which statement for a Half adder and Full adder is correct?

  1. Half adder has 2 (two) Inputs, Full adder has 3 inputs.
  2. Half adder has 2 (two) Inputs, Full adder has 4 inputs.
  3.  Half adder has one Input, Full adder has 2 (two) inputs.
  4. Half adder has one Input, Full adder has 3 inputs.

Answer (Detailed Solution Below)

Option 1 : Half adder has 2 (two) Inputs, Full adder has 3 inputs.

Adder Question 3 Detailed Solution

Concept:

Half adder circuit have two inputs and two outputs (sum and carry).

GATE EE DE 14

Sum (S) = A⊕B, Carry = A.B

INPUTS

OUTPUTS

A

B

Sum

CARRY

0

0

0

0

0

1

1

0

1

0

1

0

1

1

0

1

 

Full Adder:

A digital circuit that performs addition is called a full adder. Hardware implements full adders using logic gates. Three one-bit binary values, two operands, and a carry bit are added using a complete adder. Two numbers are output by the adder: a sum and a carry bit. When compared to a half adder, which adds two binary digits, the term is used.

Explanation:

The adder known as a "full adder" adds three inputs and generates two outputs. A and B make up the first two inputs, and C-IN is the third input. The normal output is denoted as S, which represents SUM, while the output carry is designated as C-OUT.

qImage30311

The truth table of a full adder logic is:

A

B

C

Cin

S

0

0

0

0

0

0

0

1

0

1

0

1

0

0

1

0

1

1

1

0

1

0

0

0

1

1

0

1

1

0

1

1

0

1

0

1

1

1

1

1

 

The Sum output bit of a full adder is given by:

S = A ⊕ B ⊕ C

The carry output bit of a full adder is given by:

X1 = AB + BC + AC

Adder Question 4:

What is the number of AND gates required in carry circuit for 10- bit look ahead carry adder?

Answer (Detailed Solution Below) 55

Adder Question 4 Detailed Solution

Example: 3 bit carry adder:

C1 = G0 + P0C0 → 1 AND gate

C2 = G1 + P1C1 

=G1 + (G0 + P0C) C1

= G+ G0C1+ P0CC→ 2 AND gate

C3 = G2 + P2C2 

=G2 + (G+ G0C1+ P0CC1) C2

= G2C2 + G1C+ G0C1C+ P0CC1 C→ 3 AND gate

∴ number of gates = 1 + 2 + 3 = 6

Shortcut:

The number of AND gates required in carry circuit for n-bit look ahead carry adder is given by \(n(n+1) \over 2\)

Therefore, number of AND gates = \(\frac{10(10+1)}{2} = 55\)

Important Point:

FAN IN of AND gate is more than 2

Adder Question 5:

In the two-bit full adder/subtractor unit shown in figure, when the switch is in position 1 then which operation is performed provided that operands are in 2’s complement representation.

GATE CS 21 12Q Digital Logic4 Raju S D1

  1. A - B
  2. A + B
  3. B - A
  4. A + B + 1

Answer (Detailed Solution Below)

Option 2 : A + B

Adder Question 5 Detailed Solution

In position 1 ground is connected

Cin = 0 (Ground is used)

Bin = (B1in+ B̅1Cin)(B0in+ B̅0Cin)

Bin = (B10̅  + B̅10)(B00̅  + B̅o0)

Bin = B1 B0 = B (B0 is LSB)

Similiarly Ain

Ain = A1 A0 = A

Since it is a full adder

S = Ain + Bin+ Cin = A + B + 0

∴ S = A + B

Adder Question 6:

What is the number of AND gates required in carry circuit for 10- bit look ahead carry adder?

Answer (Detailed Solution Below) 55

Adder Question 6 Detailed Solution

Example: 3 bit carry adder:

C1 = G0 + P0C0 → 1 AND gate

C2 = G1 + P1C1 

=G1 + (G0 + P0C) C1

= G+ G0C1+ P0CC→ 2 AND gate

C3 = G2 + P2C2 

=G2 + (G+ G0C1+ P0CC1) C2

= G2C2 + G1C+ G0C1C+ P0CC1 C→ 3 AND gate

∴ number of gates = 1 + 2 + 3 = 6

Shortcut:

The number of AND gates required in carry circuit for n-bit look ahead carry adder is given by \(n(n+1) \over 2\)

Therefore, number of AND gates = \(\frac{10(10+1)}{2} = 55\)

Important Point:

FAN IN of AND gate is more than 2

Adder Question 7:

A method of generating carry for fast addition is called ________

  1. decoder carry
  2. multiplexer carry
  3. addition carry
  4. look-ahead carry

Answer (Detailed Solution Below)

Option 4 : look-ahead carry

Adder Question 7 Detailed Solution

The correct answer is look-ahead carry
Concept:
  • Carry lookahead adders (CLAs) are indeed a method used in digital circuit design to speed up the process of adding binary numbers. Traditional ripple-carry adders have a delay associated with each stage, as the carry must propagate from one stage to the next, leading to longer overall addition times, especially for large numbers.
  • CLAs minimize this delay by precomputing the carry signals for each stage based on the input values. This precomputation is done in parallel, allowing the carries to be generated simultaneously for all stages. As a result, the carry propagation time is greatly reduced, leading to faster addition operations.
  • CLAs are often used in high-speed arithmetic circuits where fast addition is crucial, such as in processors and digital signal processing (DSP) applications. They offer improved performance compared to ripple-carry adders, especially for larger bit-width additions.
     

Additional Information 

CMOS logic family ICs

CD40181:  It is a low-power four-bit parallel arithmetic logic unit (ALU) capable of providing 16 binary arithmetic operations.

CD40182: It is a high-speed look-ahead carry generator capable of anticipating a carry across four binary adders or groups of adders.

CD4527: It is a BCD rate multiplier (DRM) in a 16-lead DIP type package that provides an output pulse rate based upon the BCD input number.

CD4585: It is a 4-bit magnitude comparator designed for use in computer and logic applications that require the comparison of two 4-bit words.

Adder Question 8:

If the sum of two positive binary numbers is 11010 and there is a carry - out from the MSB, what should be done to obtain the correct result? 

  1. Discard the carry 
  2. Add the carry to the least significant bit (LSB)
  3. Add the carry to the most significant bit (MSB) 
  4. Subtract the carry from the MSB

Answer (Detailed Solution Below)

Option 2 : Add the carry to the least significant bit (LSB)

Adder Question 8 Detailed Solution

The correct answer is Add the carry to the least significant bit (LSB)

Key Points

When you add binary numbers and there is a carry-out from the MSB, you incorporate this carry by adding it to the LSB to ensure the additional bit is accounted for in the result.

Example:
Adding the binary numbers 1011 (11 in decimal) and 1001 (9 in decimal):

Perform the initial addition:

   1011
+ 1001
 10100 (Binary result indicating carry-out)

Identify and add the carry to the LSB:

   10100 (Initial sum with carry-out)
    +     1 (Carry added to LSB)
   10101 (Corrected result)
Therefore, the sum is 10101 (21 in decimal). This method ensures that extra carry is properly added into the final result.

Based on this understanding, option 2 (Add the carry to the least significant bit (LSB)) is correctly chosen for this specific context and procedure.

Adder Question 9:

Match the following column I to column II

Column I      Column II
A. Half adder sum i.  A⊕B⊕C
B. Half adder carry  ii. A⊕B
C. Full adder sum iii. AB+BC+CA
D. Full adder carry   iv. AB

  1. A-ii, B-iv, C-i, D-iii
  2. A-ii, B-iii, C-i, D-iv
  3. A-i, B-iii, C-ii, D-iv
  4. A-i, B-iv, C-ii, D-iii

Answer (Detailed Solution Below)

Option 1 : A-ii, B-iv, C-i, D-iii

Adder Question 9 Detailed Solution

Concept:

Half Adder :

The Half Adder is a type of combinational logic circuit that adds two of the 1-bit binary digits. It generates carry and sum of both the inputs.

Truth Table of Half Adder:

Truth Table
Input Output
A B Sum Carry
0 0 0 0
0 1 1 0
1 0 1 0
1 1 0 1

K-map for output variable Sum:

F1 Harshita Madhuri 10.01.2022 D1

Sum= \(\bar AB+A \bar B\) = A⊕B =A EXOR B

F1 Harshita Madhuri 10.01.2022 D2

Carry = AB

Full Adder:

The Full Adder is also a type of combinational logic that adds three of the 1-bit binary digits for performing an addition operation. It generates a sum of all three inputs along with a carry value.

Truth Table of Half Adder:

Truth Table
Input Output
A B C Sum Carry
0 0 0 0 0
0 0 1 1 0
0 1 0 1 0
0 1 1 0 1
1 0 0 1 0
1 0 1 0 1
1 1 0 0 1
1 1 1 1 1

K-map for output variable Sum:

F1 Harshita Madhuri 10.01.2022 D3

\(Sum= \bar A \bar B C+A \bar B \bar C+ABC+\bar A B \bar C \\ Sum= \bar B(\bar AC+A\bar C)+B(AC+\bar A \bar C) \\Sum = \bar B(A \space XOR \space C)+B(A \space XNOR \space C)\)
Sum= A⊕B⊕C
 
 
F1 Harshita Madhuri 10.01.2022 D4
Carry= AB+BC+AC
Hence the correct answer is A-ii, B-iv, C-i, D-iii.

Adder Question 10:

How many half adders are required to add two 5-bit numbers(minimum)?

  1. 4
  2. 6
  3. 8
  4. 9
  5. 5

Answer (Detailed Solution Below)

Option 4 : 9

Adder Question 10 Detailed Solution

Formula:

For n-bit addition

The number of half adders needed  = 2×(n-1) + 1 

Calculation:

n=5

The number of half adders needed  = 2×(5-1) + 1 = 9
Get Free Access Now
Hot Links: teen patti master 2025 teen patti master update teen patti master gold download teen patti pro dhani teen patti