An expression using the greaterthan lessthan greaterthanoreq
An expression using the greater-than, less-than, greater-than-or-equal-to, less-than-or- equal-to, equal, or not-equal operator is called a(n) expression. The value of a relational expression is 0 if the expression is or 1 if the expression is. The if statement regards an expression with the value 0 as and an expression with a nonzero value as. For an if statement to conditionally execute a group of statements, the statements must be enclosed in a set of. In an if/else statement, the if part executes its statement(s) if the expression is, and the else part executes its statement(s) if the expression is.
Solution
1) Relational expresson
2) The value of relational experssion is 0,if the expression = false
The value of relational experssion is 1,if the expression = true
3) The if statement regards an expression with 0= false
The if statement regards an expression with non zero =true
5) In an if/else statement the if part executes its statement if the expression is = true block statement
In an if/else statement the else part executes its statement if the expression is = false block statement
