Computer Science, asked by rajumomin2007, 11 months ago

Write short note on control statements? Name all the decision control statement​

Answers

Answered by varadhabala29
33

Answer:

A control statement helps in determining which statements will be executed. A control statement is used when we have to alter the regular flow of control.i.e, usually the program is executed line by line. We use control statements when we have to skip a few lines and jump to another line of code.

The following are the control statements used frequently:

  • for loop
  • while loop
  • do while loop

The following are the decision making statements that are commonly used:

  • if statement
  • if else statement
  • if else if ladder
  • nested if
  • switch
Answered by bhuwan1174
2

Control Statement - Statements that are used to control the execution of a program.

• Decisions of control Statments are:-

1- If...Then....Else Statement

2- Select Case Statement

3- Do While Statement

4- For...Next Statement

Similar questions