Across
- 2. what will be the output of the following code : int a = 5 ,b = 6; if(a>1 && b<8) cout<<"false"; else cout<<"true"; .
- 6. Name the logical operator which gives reversed output.
- 7. What will be the output of the following code: int a = 5 , b = 6; if(a<4 || b>3) cout<<"true" ; else cout<<"false"; .
Down
- 1. logical operators has _______ precedence than arithmatic operators.
- 3. name the logical operator which evaluates to true when both the given condition are true.
- 4. name the logical operator which evaluates to true if any of the given condition becomes true.
- 5. logical operators has _______ precedence than conditional operator.
