Ask Question

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

+5
Answers (1)
  1. 14 August, 01:45
    0
    c. goto ... label:

    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.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “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 ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers