1.

If a=3, b=5 and c=6, find a && b || c || (!b) && (!c).

Answer»

a=3, b=5 and c=6, a= 011, b=101 , c=110. a && b || c ||(!b) && (!c): (011&&101)||(110)||(010)& &(001) = 0011| 110||000 = 111= 7.



Discussion

No Comment Found