Assuming A, B, C are conditions.  You can write logical expression that yields specific results.  For example,A B Result
0 0 0
0 1 1
1 0 1
1 1 1Expression “A or B” will give above result
Please write the simplest logical expression that will give the following results (using only and, or, not operators)
A B C Result
0 0 0 0
0 0 1 1
0 1 0 1
0 1 1 0
1 0 0 1
1 0 1 0
1 1 0 0
1 1 1 1Expression 
2A B Result
0 0 0
0 1 1
1 0 0
1 1 0Expression “(not A) and B” will give above result
Please write the simplest logical expression that will give the following results (using only and, or, not operators)A B C Result
0 0 0 0
0 0 1 0
0 1 0 1
0 1 1 1
1 0 0 0
1 0 1 1
1 1 0 0
1 1 1 1Expression ?