Logical Operations Given the following code snippet identify
Logical Operations: Given the following code snippet, identify whether the result of each operation is true or false. b & C true false b | c true false !c & d true false b^d true false For the statement a = (b I d)? true: false; a = true false
Solution
b=true;
c=false;
d=true;
b&c=false
b|c=true
!c&d=true
b^d=false
a=(b|d)?true:false
a=true
for further queries kindly get back
