Python

Python

Assessment

Flashcard

Computers

7th - 10th Grade

Easy

Created by

Divya Khandelwal

Used 3+ times

FREE Resource

Student preview

quiz-placeholder

9 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What is the name of the programming language we are learning?

Back

Python

2.

FLASHCARD QUESTION

Front

What is python?

Back

a programming language

3.

FLASHCARD QUESTION

Front

What is the name of the environment in Python that write your programs and then test them out?

Back

IDLE

4.

FLASHCARD QUESTION

Front

What extension must you add to the end of a file when saving? Options: .xlsx, .pptx, .docx, .py

Back

.py

5.

FLASHCARD QUESTION

Front

Debug

Back

Identify errors and fix them.

6.

FLASHCARD QUESTION

Front

What symbol do you use to make a comment in Python?

Back

#

7.

FLASHCARD QUESTION

Front

What will the output be from the following code?
print(3*4+5)

Back

17

8.

FLASHCARD QUESTION

Front

VARIABLE

Back

a container that holds some value

9.

FLASHCARD QUESTION

Front

A syntax error means your code has a 'grammar' mistake or you used symbols/operations incorrectly.

Back

True