26.1k views
5 votes
____ evaluation is when each part of an expression that uses an operator is evaluated only as far as necessary to determine whether the entire expression is true or false

User Csukcc
by
4.5k points

1 Answer

3 votes

Answer:

Short-circuit

Step-by-step explanation:

Short-circuit evaluation means that when you are you evaluating boolean expressions that is logical AND and OR, you can stop immediately you find the first condition which satisfies or negates the expression.

It means that once the conditions specified for any of the logic AND and OR is met, you can stop immediately you have satisfied the condition. You must not continue till you satisfy all the conditions.

User Roc Khalil
by
5.0k points