IF-THEN-ELSE syntax is used –

32. IF-THEN-ELSE syntax is used –

  1. Depending on whether the condition is TRUE or FALSE, you may want to execute one set of statements or another set.
  2. If the condition is TRUE, then you want statements to be executed
  3. As long as condition1 is TRUE, then one set of statements will be executed, and when condition2 is TRUE, another set will be executed.
  4. When condition1 is TRUE, one set of statements will be executed, and when both conditions are FALSE, a different set of statements will be executed.

Answer: A) Depending on whether the condition is TRUE or FALSE, you may want to execute one set of statements or another set.

Explanation:

Depending on whether the condition is TRUE or FALSE, you may want to execute one set of statements or another set.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.