Search Header Logo
Python Programming Basics Flashcard

Python Programming Basics Flashcard

Assessment

Flashcard

Computers

12th Grade

Practice Problem

Hard

Created by

Wayground Content

FREE Resource

Student preview

quiz-placeholder

9 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What will be the output?
name = "Dave"
print ("name")

Back

name

2.

FLASHCARD QUESTION

Front

A programmer wants to write a while loop that continues to run as long as the user's input is less than 100. Which of the following is the correct loop condition? Options: while user_input < 100:, while user_input > 100:, while user_input == 100:, while user_input != 100:

Back

while user_input < 100:

3.

FLASHCARD QUESTION

Front

What will be the output of the following Python code?
favorite_colors = ['red', 'blue', 'green', 'yellow']
favorite_colors.append('purple')
print(len(favorite_colors))

Back

5

4.

FLASHCARD QUESTION

Front

Given the dictionary students = {'John': 10, 'Jane': 11, 'Joe': 10}, what is the correct way to print Jane's age?

Back

print(students['Jane'])

5.

FLASHCARD QUESTION

Front

What is the output of the following code?
Python code block:
def is_even(number):
if number % 2 == 0:
return True
else:
return False
print(is_even(9))

Media Image

Back

False

6.

FLASHCARD QUESTION

Front

Which line of code correctly opens a file named data.txt to add new information without erasing existing content? Options: file = open('data.txt', 'r'), file = open('data.txt', 'w'), file = open('data.txt', 'a'), file = open('data.txt', 'x')

Back

file = open('data.txt', 'a')

7.

FLASHCARD QUESTION

Front

What is the output if the user types "Python"?

Media Image

Back

Try again!

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Microsoft

Continue with Microsoft

or continue with

Facebook

Facebook

Apple

Apple

Others

Others

Already have an account?