Computer Science, asked by bhavishyapra96, 1 month ago

Which of these is not a conditional statement?
a. Continue
b. If.... Else
c. If.... elif.... Else
d. If​


atrs7391: Come on the answer is a. Continue and you marked brainliest the one who gave the answer wrong, Woww!!

Answers

Answered by stefangonzalez246
3

(a) Continue is not a conditional statement.

Explanation:

  • Continue is the loop control statement and it is used to execute the next iteration of the loop by skipping the current iteration.
  • The continue statement will be present only in do, while, for loop statements.
  • The continue statement is placed inside the loop.
  • If...else, if...elif...else, if are the conditional statements and it is used to make decisions.
  • If statement is a one-way selection and it will execute if the condition is true.
  • If...else is a two-way selection and it will execute the given condition is true or false.
  • If...elif..else has multiple conditions and if statement is associated with else if statement and ends with else statement.
Answered by lathamadhu48788
1

Answer:

a continue

Explanation:

please mark me as brainlist

Similar questions