If a,b,c are integer variable with values 3,2,5 respect
then what is the value of the expression
(!(b +c) > (a + 5))
Answers
Answered by
6
Answer:
Given :
- a = 3
- b = 2
- c = 5
Given Expression :
( ( b + c ) > ( a + 5 ) )
To Find :
The value of Expression
Solution :
⟶ ( ( b + c ) > ( a + 5 ) )
⟶ (( 2 + 5 ) > ( 3 + 5 ))
⟶ (( 7 ) > ( 8 ))
⟶ (( 7 ) > ( 8 ))
Here, 8 is highest.
So the value becomes 0. 0 means that it is false.
If it is a true expression, then the value is 1.
Value Of Expression :
⟶ (( 7 ) > ( 8 )) = 0 ( false )
_____________
Operators :
An operators is a symbol that tells the compiler to perform specific mathematical or logical manipulations.
It Consists of arithmetic, relational, and logical operators.
Similar questions