Computer Science, asked by skatkar573, 2 months ago

If all conditions evaluate to false, the statements under the ‘else’ part are executed.

True

False​

Answers

Answered by eeshantale06
0

Answer:

false

Explanation:

In most (but not all) modern languages, there is a feature called "short circuit boolean evaluation". This means that if the first part of an && condition is false, then the second part is not evaluated at all. A similar feature applies to || , where if the first part is true, the second part is not evaluated

Similar questions