63.3k views
4 votes
The following pseudocode is an example of ____.if conditionA is true then

do stepEelsedo stepBdo stepCdo stepDendif

User Wiwiweb
by
7.9k points

1 Answer

4 votes

Final answer:

The pseudocode is an example of a conditional statement. If conditionA is true, then stepE is executed, followed by steps B, C, and D.

Step-by-step explanation:

The pseudocode is an example of a conditional statement. In this case, the condition being checked is conditionA. If that condition is true, then the program will execute stepE.

After that, it will proceed to execute stepB, stepC, and stepD.

User Shamia
by
8.1k points