44.2k views
5 votes
If someCondition is true thendo oneProcess____do theOtherProcess

User Geo Paul
by
7.9k points

1 Answer

7 votes

Final answer:

A conditional statement in programming allows you to execute different processes based on whether a condition is true or false.

Step-by-step explanation:

A conditional statement in programming allows you to execute different processes based on whether a condition is true or false. In this case, if the condition someCondition is true, then oneProcess is executed, followed by the execution of theOtherProcess. If someCondition is false, the code inside the conditional statement is skipped and not executed.

User Pietrodito
by
8.0k points