Python Demo

Python Demo

9th Grade

41 Qs

quiz-placeholder

Similar activities

اختبار تجريبي تقنية رقمية 2-2

اختبار تجريبي تقنية رقمية 2-2

9th - 12th Grade

45 Qs

PowerPoint 1

PowerPoint 1

6th - 12th Grade

40 Qs

SOAL SUMATIF 2

SOAL SUMATIF 2

9th - 12th Grade

40 Qs

PRESAF MATPIL XI TKJ

PRESAF MATPIL XI TKJ

9th - 12th Grade

40 Qs

Personal and Business Letters

Personal and Business Letters

9th Grade

40 Qs

COMPTIA Review Units 1-6 Practice Exam

COMPTIA Review Units 1-6 Practice Exam

9th - 12th Grade

41 Qs

TIN HỌC KHỐI 5 HK1

TIN HỌC KHỐI 5 HK1

1st Grade - University

42 Qs

CompTIA ITFundamentals CRAM

CompTIA ITFundamentals CRAM

6th Grade - University

46 Qs

Python Demo

Python Demo

Assessment

Quiz

Computers

9th Grade

Hard

Created by

Ujjwala Panchal

Used 2+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?