Exit ticket

Exit ticket

7th Grade

7 Qs

quiz-placeholder

Similar activities

A Violence Free Society: Vocabulary

A Violence Free Society: Vocabulary

7th - 8th Grade

10 Qs

Diabetes day

Diabetes day

6th - 8th Grade

10 Qs

Lesson 44 - Dictionary Datatype 2

Lesson 44 - Dictionary Datatype 2

5th - 8th Grade

10 Qs

Lesson 21- Matrix manipulation

Lesson 21- Matrix manipulation

5th - 8th Grade

10 Qs

Grade 9

Grade 9

7th Grade

11 Qs

Checking Condition of Tools

Checking Condition of Tools

1st - 10th Grade

10 Qs

Lesson 13 - Introduction to function

Lesson 13 - Introduction to function

5th - 8th Grade

10 Qs

Arduino_01

Arduino_01

6th - 12th Grade

8 Qs

Exit ticket

Exit ticket

Assessment

Quiz

Education

7th Grade

Medium

Created by

Mais Nouman

Used 2+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

While loop

used to execute a set of statements as long as a condition is true

used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or string)


used to stop the loop even if the while condition is true

used to stop the current iteration, and continue with the next

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

continue statement

used to execute a set of statements as long as a condition is true

used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or string)


used to stop the loop even if the while condition is true

used to stop the current iteration, and continue with the next

3.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Break Statement is

used to execute a set of statements as long as a condition is true

used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or string)


used to stop the loop even if the while condition is true

used to stop the current iteration, and continue with the next

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

for loops cannot be:


happy

empty

used

deleted

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Would the following expression result in True or False?

13 > 15

true

false

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Would the following expression result in True or False?

3 * 2 >= 5

true

false

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

String variables can be declared either by using single quotes ' ' or:


; (semicolon)

# (hash symbol)


" " (double quotes)


! (exclamation mark)