be trues of each wariable Solution6 Given b true c false d
be trues of each wariable
Solution
6.
Given: b = true, c = false, d = true;
b & c: true & false is false.
b | c: true | false is true.
b & d: true & true is true.
a = (b | d) ? true : false. will evaluate b | d which means true | true i.e., true. And therefore, true will be assigned to a.
The image is of very poor quality, and is not visible. I tried answering the max. If you have any further queries, just upload a better quality images.
