
Python Basics Quiz
Authored by Jonathan Brusco
Computers
10th Grade
Used 2+ times

AI Actions
Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...
Content View
Student View
24 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the correct way to declare a variable `x` with the value `10` in Python?
int x = 10
var x = 10
x = 10
declare x = 10
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following data types is used to store a sequence of text characters in Python?
string
text
str
char
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of the following code snippet? ```python if 5 > 2: print("Five is greater than two!") ```
Error
Five is greater than two!
True
Nothing
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How do you start a `for` loop in Python?
for(int i = 0; i < 5; i++)
for i < 5:
for i in range(5):
for(i=0; i<5; i++)
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following is a correct function definition in Python?
function myFunction():
def myFunction():
void myFunction():
func myFunction():
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How do you add an item to the end of a list named `myList`?
myList.add("new item")
myList.append("new item")
myList.insert("new item")
myList.addEnd("new item")
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of the following code snippet? ```python x = ["apple", "banana", "cherry"] print(x[1]) ```
apple
banana
cherry
Error
Access all questions and much more by creating a free account
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple
Others
Already have an account?