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

do stepEelsedo stepBdo stepCdo stepDendif

asked
User Wiwiweb
by
8.3k 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.

answered
User Shamia
by
8.4k points