logical operators

1234567
Across
  1. 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"; .
  2. 6. Name the logical operator which gives reversed output.
  3. 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. 1. logical operators has _______ precedence than arithmatic operators.
  2. 3. name the logical operator which evaluates to true when both the given condition are true.
  3. 4. name the logical operator which evaluates to true if any of the given condition becomes true.
  4. 5. logical operators has _______ precedence than conditional operator.