which of the following control structure is used for decision making?
(a)sequence (b)selection (c)Loop (d) none of these
Answers
Answered by
0
Answer:
Loop...
I am not sure about this answer.If it helps you. Mark me as brainliest.
Answered by
0
The control structure that is used to make decisions in programming is Loop. Option(c) is the correct answer.
- A decision is the specification of actions to be taken in response to conditions that may arise during program execution.
- It is possible to run a statement or collection of statements repeatedly by using a loop statement.
- While loops, for loops, and nested loops are the three types of loops that programming languages offer to handle looping requirements.
- While a given condition is TRUE, a statement or set of statements are repeated in a while loop. Before beginning the loop body, the condition is tested.
- The for loop: Shortens the code that controls the loop variable and repeatedly executes a series of statements.
- The for or while loop can be used inside one or more loops to create a nested loop.
To learn more:
https://brainly.in/question/11890305
https://brainly.in/question/12642799
#SPJ2
Similar questions