|
Directions to Solve
In the following questions choose the word which is the exact OPPOSITE of the given words.
ANS:D - Cheap
No answer description is available.
|
A Error: invalid access to list member
B Error: ptr must be type of va_list
C Error: too many parameters
ANS:A - Error: too many parameters
No answer description is available. Let's discuss.
|
ANS:A - using Boolean algebra
NO. It cannot be reduced by truth table. Probably, Truth table is just to know the given expressions HIGH or LOW and only with the help of truthtable we can draw a logic circuit diagram.
|
A
B
C
D
ANS:D -
Well, C and D all make sense. In C the whole expression is complimented, if you simplify it, I mean remove the compliment sign, it will result into sth similar to D. Am so lost here.
|
ANS:C - NOR
For bubbled input to AND gate;
A B (A' . B')
0 0 1
0 1 0
1 0 0
1 1 0
And for NOR gate;
A B (A+B)'
0 0 1.
0 1 0.
1 0 0.
1 1 0.
So bubbled AND will have the same output as that of NOR gate.
|
ANS:C - 3
ABC' = 110.
A'BC = 011.
AB'C = 101.
Normally,
The three input truth table is,
A B C Y
0 0 0 0
0 0 1 1
0 1 0 1
0 1 1 1------>A'BC
1 0 0 1
1 0 1 1 ------>AB'C
1 1 0 1------->ABC'
1 1 1 1
Based on the expression, we consider the marked ones.
So, the answer is 3. Means 3 1's will come.
|
ANS:D - 8
For n variables the no of input combinations are 2^n so here n=3 so 2^3=8 there are 8 combinations.
|
ANS:D - 5
ANS D
READ THE QUESTION PROPERLY:
"Expression BEFORE simplification"
I'll suggest you to draw it with the gates.it is the best way for you to understand.
XY+X(X+Z)+Y(X+Z).
Solution:
XY - AND gate(2 inputs),
X+Z - OR gate(2 inputs),
X(X+Z)-AND gate(2 inputs),
Y(X+Z)-AND gate(2 inputs),
XY + X(X+Z) + Y(X+Z)-OR gate(3 inputs).
A total of 5 gates in all.
|
A A = 0, B = 1, C = 0, D = 1
B A = 0, B = 0, C = 0, D = 1
C A = 1, B = 1, C = 1, D = 1
D A = 0, B = 0, C = 1, D = 0
ANS:A - A = 0, B = 1, C = 0, D = 1
Abar and Cbar both has "NOT" gate, if we include '0', we can get '1', therefor 1*1*1*1 = 1. A is the answer.
|
A It may make it easier to understand the overall function of the circuit.
B It may reduce the number of gates.
C It may reduce the number of inputs required.
ANS:D - all of the above
xy + xx + xz + yx + zy
We will remove the similar term.
=> xy + xx + xz + zy
=> xx + xy + xz + zy
=> x(1+y) + xz + zy
=> x + xz + zy
=> x(1+z) + zy
=> x + zy
|