Write the values of the following logical expressions, a = 3, B = 4, C = 5  

Write the values of the following logical expressions, a = 3, B = 4, C = 5  


(2) For true, that is 1



Let a = 3, B = 4, C = 5, then the value of logical expression "! (a + b) * C-1 & & B + C% 2" is 1. Why


"!(a+b)*c-1&&b+c%2
(a+b)=7
(a+b)*c=35
!(a+b)*c=0
! (a + b) * C-1 = - 1 is true
The result of B + C% 2 is true
True & true = 1



Let a = 3, B = 4, C = 5, then the value of the logical expression! (a > b) & &! C | 1 is


true



3. Let a = 3, B = 4, C = 5, and write the values of the following logical expressions. The calculated values of the expressions are a + b > C & & B = = C (a > b) & C | 1


1&&b==1&&0|| 1
The answer is 1