110k views
5 votes
Expressions that are tested by the if statement are called boolean expressions are called:_________

User Maysi
by
7.2k points

2 Answers

5 votes

Answer: LOGICAL EXPRESSIONS

Step-by-step explanation: An if statement includes a logical expression which is the 'test. ' A logical expression is one that is either true or false. This is also called a Boolean expression.

User ClimbsRocks
by
7.9k points
6 votes

Final answer:

Boolean expressions are tested by the if statement and evaluate to either true or false.

Step-by-step explanation:

Expressions that are tested by the if statement are called boolean expressions. A boolean expression is an expression that evaluates to either true or false. In other words, it represents a condition that can be either satisfied or not satisfied. When the condition is satisfied (evaluates to true), the code inside the if statement is executed. When the condition is not satisfied (evaluates to false), the code inside the if statement is skipped.

User S R
by
7.5k points