Exit ticket

Exit ticket

7th Grade

7 Qs

quiz-placeholder

Similar activities

SAFETY AND CLEANLINESS OF THE SALON

SAFETY AND CLEANLINESS OF THE SALON

7th - 8th Grade

5 Qs

Webinar Gameshow

Webinar Gameshow

7th - 12th Grade

10 Qs

Pet 1

Pet 1

6th Grade - University

9 Qs

Web application Vulnerabilities

Web application Vulnerabilities

4th - 11th Grade

12 Qs

Lesson 58 - Component-2

Lesson 58 - Component-2

5th - 8th Grade

10 Qs

Moringa JavaScript Arrays

Moringa JavaScript Arrays

5th Grade - Professional Development

10 Qs

Parts of Speech ( Part1)

Parts of Speech ( Part1)

4th - 7th Grade

10 Qs

Types of Misleading Information

Types of Misleading Information

7th - 10th Grade

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