
Python Programming Basics Flashcard

Flashcard
•
Computers
•
12th Grade
•
Hard
Wayground Content
FREE Resource
Student preview

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))
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"?
Back
Try again!
8.
FLASHCARD QUESTION
Front
What does the following algorithm do?
Back
Add up all the numbers between (and including) 1 and 5
9.
FLASHCARD QUESTION
Front
What control structure would be best to use in the following code? Options: A function, A while loop, A for loop, An if/else statement
Back
A for loop
Similar Resources on Wayground
11 questions
Feedback Loops

Flashcard
•
10th - 12th Grade
7 questions
Урок 3. Весняний інтенсив 2025

Flashcard
•
University
9 questions
Fly Fishing Test

Flashcard
•
11th Grade
9 questions
U2 Review

Flashcard
•
10th Grade
11 questions
Video Production Flashcard

Flashcard
•
12th Grade
14 questions
EOPA Week 3 Vocabulary

Flashcard
•
11th Grade
10 questions
Flashcard on Programming Essentials

Flashcard
•
11th Grade
10 questions
Multimedia Studies Week 10 Flashcard 1

Flashcard
•
12th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
Appointment Passes Review

Quiz
•
6th - 8th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
Grammar Review

Quiz
•
6th - 9th Grade