93.7k views
1 vote
The keywords used in programming languages that use decisions to redirect the flow of a program are called ________. A.flowcharts B.control structures C.pseudocode operators

User Sorav Garg
by
6.6k points

1 Answer

6 votes

Answer:

Option B is the correct answer for the above question.

Step-by-step explanation:

The control structure is a decision type structure which can be either true or false. It has two options-- If this then, does this otherwise do this. When the user wants to write he control structure then he can do this by the help of the following syntax in python language--

if(condition):

do this

else:

do this

The above question wants to ask about the concept which is used in the programming for a decision then the answer is control structure which is referred from the option B. Hence B is the correct option while the other is not because--

  • Option A states about the flowchart which is the picture form of the instruction.
  • Option C states about the pseudocode which is the language form of the instruction.
  • The operator is also not the correct option because it is used to perform the operation.

User Okutane
by
6.5k points