Warm Up- EduBlocks- Terms and Concepts

Warm Up- EduBlocks- Terms and Concepts

Assessment

Flashcard

Computers

9th - 12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

8 questions

Show all answers

1.

FLASHCARD QUESTION

Front

You use this statement to access another Python module or file

Back

import

2.

FLASHCARD QUESTION

Front

Collection of data (variables) and methods (functions) that act on those data.

Back

object

3.

FLASHCARD QUESTION

Front

A loop that repeats a specific block of code a known number of times by "counting" through each iteration.

Back

for loop

4.

FLASHCARD QUESTION

Front

Method that returns a random integer from a specified range.

Back

random.randint

5.

FLASHCARD QUESTION

Front

A symbolic name for a value.

Back

variable

6.

FLASHCARD QUESTION

Front

Repeats a specific block of code an unknown number of times until a condition is met.

Back

while loop

7.

FLASHCARD QUESTION

Front

How many times will this program repeat "Happy Birthday to you"?

Back

twice

8.

FLASHCARD QUESTION

Front

How many times will this loop print "I am in a loop"?

Back

5