KnowledgeBoat Logo
|

Informatics Practices

if statement comes in which category of statements?

  1. Sequential statements
  2. Conditional statements.
  3. Iterative statements
  4. Loop statement

Python Control Flow

1 Like

Answer

Conditional statements.

Reason — The if statement is a conditional statement because it is used to control flow of execution of a program depending upon the condition.

Answered By

1 Like


Related Questions