205k views
5 votes
You can use an ____ statement to clearly show where the actions that depend on a decision end.

A) endstructure
B) end
C) endloop
D) endif

User JonSG
by
6.5k points

1 Answer

2 votes

Answer:

D) endif

Step-by-step explanation:

An endif statement is used in a programming language to mark the end of a block of code that is controlled by an if statement. It is used to clearly show the end of the actions that depend on a decision, and to help make the code more readable and easier to understand.

User Eric Pruitt
by
6.9k points