
Python Demo

Quiz
•
Computers
•
9th Grade
•
Hard
Ujjwala Panchal
Used 2+ times
FREE Resource
41 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the value of `y` after the code is executed?
```python
y = 10
for x in range(y):
if x == 5:
break
y = x
'''
5
10
0
1
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which Python library is primarily used for data manipulation and analysis?
A) NumPy
B) Pygame
C) Pandas
D) Flask
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of the following code? ```python
nums = [1, 2, 3, 4]
print(nums[-1])
```
A) 1
B) 4
C) 3
D) Error
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How many times does the loop run in the following code snippet? ```python
for i in range(2, 10, 3):
print(i)
```
A) 2
B) 3
C) 4
D) 5
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does the following code output if the user inputs '7'? ```python
age = input("Enter your age: ")
if age >= 18:
print("Adult")
else:
print("Not Adult")
```
A) Adult
B) Not Adult
C) TypeError
D) ValueError
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which operator is used in Python to check if two variables are the same object?
A) ==
B) is
C) equals
D) ===
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is wrong with the following code snippet? ```python
score = 65
if score >= 60:
result = "Pass"
elif score < 60:
result = "Fail"
print(result)
```
A) The variable `result` is not defined in all code paths
B) There is no logical flaw; the code is correct
C) The `print(result)` statement should be indented
D) The `elif` statement is unnecessary
Create a free account and access millions of resources
Similar Resources on Wayground
40 questions
Python.Comp Quiz (Python Coding)

Quiz
•
9th Grade - University
45 questions
CH4 - Python

Quiz
•
9th - 12th Grade
38 questions
Microsoft Word 2016

Quiz
•
9th - 12th Grade
40 questions
Introduction to Microsoft Word

Quiz
•
8th - 12th Grade
42 questions
Cyber Skill 2023

Quiz
•
9th - 12th Grade
44 questions
Python Test 2

Quiz
•
7th - 12th Grade
42 questions
Cybersecurity Sem 2

Quiz
•
9th Grade
40 questions
Python Unit 01 - Introduction to Python

Quiz
•
7th - 9th Grade
Popular Resources on Wayground
15 questions
Hersheys' Travels Quiz (AM)

Quiz
•
6th - 8th Grade
20 questions
PBIS-HGMS

Quiz
•
6th - 8th Grade
30 questions
Lufkin Road Middle School Student Handbook & Policies Assessment

Quiz
•
7th Grade
20 questions
Multiplication Facts

Quiz
•
3rd Grade
17 questions
MIXED Factoring Review

Quiz
•
KG - University
10 questions
Laws of Exponents

Quiz
•
9th Grade
10 questions
Characterization

Quiz
•
3rd - 7th Grade
10 questions
Multiply Fractions

Quiz
•
6th Grade