213k views
1 vote
It is used to jump to other section of the program to support labels.

Select one:

a. continue

b. break

c. goto....label:

d. else

1 Answer

1 vote

Answer:

c. goto....label:

Step-by-step explanation:

goto....label: is used to jump to other section of the program.It is an unconditional jump statement.It is used to jump anywhere in the program.

continue statement is used in loops it executes the next iteration of the loop.

break statement is also used in loops and it brings the control out of the loop.

else is used with if statements.

User Leke
by
7.7k points