Conditional and Looping Statements Flashcards

1
Q

The Stepwise Solution written in simple English to fulfill a task is called

A

Algorithm

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The graphical representation of the steps taken to reach a certain result

A

Flowchart

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The symbols which are connected by arrows are called

A

Flow Lines

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

If we have several conditions then what statement we’ll use?

A

if-elif-else Staement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

While loop and for Loop are what type of loop ? and why?

A

They are Entry control loop because the looping condition is evaluated at the beginning of the loop scope.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

The Statements which transfer the program control within a function unconditionally?

A

Jump Statements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which Statement terminate the current iterations of the loop by skipping over the rest of the statements in the loop body.

A

continue Statement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly