Explore topic-wise InterviewSolutions in .

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.

1.

Explain with an example how to express a Boolean function in its product of sum form.

Answer»

The logical product of two or more logical sum terms is known as a product of sums expression. POS is an ANDing of ORed variables. The boolean expression containing all the input variables either in complemented or un complemented form in each of the sum term is known as a canonical POS expression and each term is called maxterm. For example, express the product of sum from the boolean function F(X, Y) and the truth table for which is given below:

XYFMaxterm
001X+Y
010X+Y’
100X’+Y
111X’+Y’

Now by multiplying max terms for the output 0’s, we get the desired product of sums expression which is (X+Y') (X’+Y).

2.

What do you understand by the term truth function?

Answer»

The sentences which can be determined to be true or false are called truth function.

3.

Prove algebraically that (X+Y) (X+Z) = X + YZ

Answer»

LHS: = (X+Y) (X+Z)
= XX + XZ + XY + YZ
= X + XZ + XY + YZ
= X + (1 + Z +Y) YZ
= X + YZ
= RHS

4.

What do you understand by the term truth value?

Answer»

The result TRUE or FALSE of logical statement are called truth values.

5.

What is another name of Boolean algebra?

Answer»

Another name of Boolean algebra is ‘Switching Algebra’.

6.

Prove idempotent law using truth table.

Answer»

Idempotent law using truth table

XXOUTPUT
X.X
X+X
0000
1111
7.

Prove that X(X+Y) = X (Absorption law).

Answer»
XYX + YX(X+Y)
0000
0110
1011
1111
8.

State Distributive law.

Answer»

1. a term (A) ANDed with an parenthetical expression (B+C) equals that term ANDed with each term within the parenthesis: A.(B+C) = AB+AC;

2. a term (A) ORed with a parenthetical expression (B . C) equals that term ORed with each term within the parenthesis: A+(BC) = (A+B) . (A+C).

9.

State Complementarity law.

Answer»

The complementarity law states that a term ANDed with its complement equals 0, and a term ORed with its complement equals 1 (AA’ = 0, A+A’ = 1).

10.

State Commutative law.

Answer»

The commutative law states that the order in which terms are written does not affect their value. For example, (AB = BA, A+B = B+A).

11.

Prove Complementarity law using truth table.

Answer»
A\(\overline A\)A.\(\overline A\)A+\(\overline A\)
0100
1111
12.

Prove Involution law using truth table.

Answer»
YYOUTPUT
!(!Y)
010
101
13.

State idempotent law.

Answer»

When a variable combines with itself using OR or AND operator and produces the same variable as output is called idempotent law.

For example, X + X = X, X.X=X

14.

State Involution law.

Answer»

This law states that the double complement of a variable gives the same variable.

15.

What is a truth table? What is its significance?

Answer»

Truth tables are a means of representing the results of a logic function using a table. They are constructed by defining all possible combinations of the inputs to a function and then calculating the output for each combination in turn.

16.

What is NOT operator?

Answer»

The “NOT” is simply the opposite or complement of its original value.

17.

What is minterm?

Answer»

A minterm is a special product of literals, in which each input variable appears exactly once.

18.

What is a maxterm?

Answer»

A maxterm is a sum of literals, in which each input variable appears exactly once.

19.

What is OR operator?

Answer»

The OR is a disjunction operator and denotes logical addition.

20.

What is AND operator?

Answer»

The Logical AND operator is a conjunction operator and denotes logical multiplication.

21.

Write the truth table for OR operator.

Answer»
XYOUTPUT X + Y
000
011
101
111
22.

Write the truth table for NOT operation.

Answer»

The truth table for NOT operation.

XNOT X
01
10
23.

Prove Communicative law using truth table.

Answer»
ABA.BBAA+BB+A
000000
010011
100011
111111
24.

State Associative law.

Answer»

It is a simple equality statement i.e., A(BC) = ABC or A+(B+C) = A+B+C.

25.

Write the truth table for AND operation.

Answer»
XYOUTPUT 
X.Y
000
010
100
111
26.

Prove that X+XY = X (Absorption law)

Answer»
XYX.YX+XY
0000
0100
1001
1111
27.

Name the three logical operators.

Answer»

The three logical operators are AND, OR and NOT.

28.

Prove the 1+Y is a tautology and 0.Y is a fallacy.

Answer»
tautologyfallacy
If Y = 0, then 1 + 0 = 1If Y = 1, then 0.1 = 0
If Y = 1, then 1+1 = 1If Y = 0, then 0.0 = 0
29.

What do you understand by logic function?

Answer»

The logic function is a compound statement that consists of a logic statement with logical operators like AND, OR and NOT.

30.

Give examples for logic function.

Answer»

The examples for logic functions are
X NOT Y OR Z
Y AND X OR Z

31.

What is meant by tautology and fallacy?

Answer»

If the result of any logical statement or expression is always TRUE is called Tautology and the result of any logical statement is always FALSE is called fallacy.