Search Header Logo

Python Demo

Authored by Ujjwala Panchal

Computers

9th Grade

Used 2+ times

Python Demo
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

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

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?