Conditional and Looping Statements Flashcards
The Stepwise Solution written in simple English to fulfill a task is called
Algorithm
The graphical representation of the steps taken to reach a certain result
Flowchart
The symbols which are connected by arrows are called
Flow Lines
If we have several conditions then what statement we’ll use?
if-elif-else Staement
While loop and for Loop are what type of loop ? and why?
They are Entry control loop because the looping condition is evaluated at the beginning of the loop scope.
The Statements which transfer the program control within a function unconditionally?
Jump Statements
Which Statement terminate the current iterations of the loop by skipping over the rest of the statements in the loop body.
continue Statement