Computer Science, asked by SamriddhiKAUR, 4 months ago

name any two types of control structures​

Answers

Answered by MysticalStar07
21

There are two basic types of control structures in most programming languages. There are selection type controls that make use of comparison and/or logical operators to select a course of action for the program, and there are loop type structures that repeat a set of instructions until some condition is met.

Answered by Anonymous
0

Answer:

Flow of control through any given function is implemented with three basic types of control structures:

Sequential: default ...

Selection: used for decisions, branching -- choosing between 2 or more alternative paths. ...

Repetition: used for looping, i.e. repeating a piece of in a row.

Similar questions