Exit ticket

Exit ticket

7th Grade

7 Qs

quiz-placeholder

Similar activities

Movement Challenge Diagnostic

Movement Challenge Diagnostic

7th - 8th Grade

11 Qs

Grand Nursing Theories Based on Human Needs

Grand Nursing Theories Based on Human Needs

1st Grade - University

10 Qs

Ancient eyptians - verbs

Ancient eyptians - verbs

4th - 8th Grade

10 Qs

TECHNOLOGY AND LIVELIHOOD EDUCATION 7 (THIRD ROUND)

TECHNOLOGY AND LIVELIHOOD EDUCATION 7 (THIRD ROUND)

7th Grade

10 Qs

Le Petit Nicolas Les cow-boys page 3

Le Petit Nicolas Les cow-boys page 3

7th Grade

10 Qs

Trough

Trough

6th - 8th Grade

10 Qs

Diabetes day

Diabetes day

6th - 8th Grade

10 Qs

EMT

EMT

6th Grade - Professional Development

9 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)