_ students are used to control the flow of a program
Answers
Answered by
0
Answer:
In computer programming, control flow or flow of control is the order function calls, instructions, and statements are executed or evaluated when a program is running.
Answered by
0
The control structure is used to control the flow of a program.
Explanation:
There are three types of control structure:-
--Sequential
Sequential is the default control structure, instructions are executed line by line in the sequence in which they have written.
-- Selection:
A group of instructions executes relying upon whether the condition is true or false.
if
if/else
switch
--Iteration:
Over and over the execution of instructions as long as the condition is valid.
while
do/while
for
Similar questions