Python Demo

Python Demo

9th Grade

41 Qs

quiz-placeholder

Similar activities

Python set 2

Python set 2

9th - 12th Grade

42 Qs

Python Assessment 1

Python Assessment 1

7th - 9th Grade

40 Qs

Y10 - Python Quiz 1

Y10 - Python Quiz 1

9th Grade

37 Qs

Python cơ bản 1

Python cơ bản 1

9th - 12th Grade

41 Qs

Python Revision Years 8&9 IGCSE

Python Revision Years 8&9 IGCSE

9th - 12th Grade

40 Qs

Python set 4

Python set 4

9th - 12th Grade

44 Qs

Programming Final Exam

Programming Final Exam

9th - 12th Grade

40 Qs

Week 4 - What is Python?

Week 4 - What is Python?

9th - 12th Grade

46 Qs

Python Demo

Python Demo

Assessment

Quiz

Computers

9th Grade

Hard

Created by

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

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?