Python Basics Test

Python Basics Test

Assessment

Flashcard

Professional Development

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

26 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Which operator is generally faster, is or ==, and why?

Back

is, because it only compares memory addresses

Answer explanation

  • is only checks if two variables point to the same object in memory → Faster

==compares values, which can be slower if objects are large (like lists or dictionaries).

2.

FLASHCARD QUESTION

Front

What is Python?

Back

A high-level programming language

3.

FLASHCARD QUESTION

Front

What is the output of print(2 + 3 * 4)?

Back

14

4.

FLASHCARD QUESTION

Front

Which of the following statements is used to exit from a loop in Python? stop, exit, break, end

Back

break

5.

FLASHCARD QUESTION

Front

What will be the output of the following code?
x = [1, 2, 3]
x.append([4, 5])
print(x)

Back

[1, 2, 3, [4, 5]]

6.

FLASHCARD QUESTION

Front

Which of the following is the best way to check if a variable is None?
if x == None:
if x is None:
if x == "None":
if x is "None":

Back

if x is None:

7.

FLASHCARD QUESTION

Front

What will be printed?
python
CopyEdit
t1 = (1, 2, 3)
t2 = (1, 2, 3)
l1 = [1, 2, 3]
l2 = [1, 2, 3]
print(t1 is t2)
print(l1 is l2)

Back

True, False

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?

Discover more resources for Professional Development