Answer :

The three statements that take the problem-solving process to another level are:

  • IF,
  • THEN,  
  • ELSE

In computer programming, they are known as conditional statements that give alternate commands to the computer system if a condition is not satisfied.

For example, a sample algorithm is given below:

Ask for student scores

If score > 70

THEN

Print "You have an A"

ELSE

IF score greater than or equals to 60 and < 70

THEN

Print "You have a B"

What is a Conditional Statement?

This refers to the types of statements that give alternate commands to the computer system if a condition is not satisfied.

Hence, we can see The three statements that take the problem-solving process to another level are:

  • IF,
  • THEN,  
  • ELSE

In computer programming, they are known as conditional statements that give alternate commands to the computer system if a condition is not satisfied.

For example, a sample algorithm is given below:

Ask for student scores

If score > 70

THEN

Print "You have an A"

ELSE

IF score greater than or equals to 60 and < 70

THEN

Print "You have a B"

Read more about conditional statements here:

https://brainly.com/question/18736215

#SPJ1