Exit ticket

Exit ticket

7th Grade

7 Qs

quiz-placeholder

Similar activities

Lesson 39 Test-5

Lesson 39 Test-5

5th - 8th Grade

10 Qs

Diabetes day

Diabetes day

6th - 8th Grade

10 Qs

Python Basics 🐍

Python Basics 🐍

2nd Grade - Professional Development

5 Qs

Lesson 29 - Introduction to module

Lesson 29 - Introduction to module

5th - 8th Grade

10 Qs

Lesson 25 - datetime module

Lesson 25 - datetime module

5th - 8th Grade

10 Qs

Module 5- Hazard in the work place

Module 5- Hazard in the work place

7th Grade

10 Qs

Lesson 10 - Decision control statements

Lesson 10 - Decision control statements

5th - 8th Grade

10 Qs

Skincare quiz

Skincare quiz

6th - 8th Grade

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)