Find the Boolean Expression F which is represented in the following Truth…
2026
Find the Boolean Expression F which is represented in the following Truth Table:
A | B | F |
|---|---|---|
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |
- A.
A'·B + A·B'
- B.
A' + A·B'
- C.
A'·B + B'
- D.
A·B + A'·B'
Attempted by 245 students.
Show answer & explanation
Correct answer: A
Identify rows where output F is 1. Row 2 (A=0, B=1) corresponds to A'B. Row 3 (A=1, B=0) corresponds to AB'. Summing these minterms gives F = A'B + AB', which represents the Exclusive-OR (XOR) function.