Python Programming Quiz

Python Programming Quiz

University

20 Qs

quiz-placeholder

Similar activities

Introduction to Multimedia Quiz- Lesson 6 & 7

Introduction to Multimedia Quiz- Lesson 6 & 7

University

20 Qs

S2 Microsoft Access Database Quiz

S2 Microsoft Access Database Quiz

10th Grade - University

15 Qs

5-sinf. Kompyuter va Internet Asoslari

5-sinf. Kompyuter va Internet Asoslari

5th Grade - University

15 Qs

11° Prueba Integral 1P 2025

11° Prueba Integral 1P 2025

11th Grade - University

16 Qs

Latihan Soal Informatika

Latihan Soal Informatika

8th Grade - University

17 Qs

Java Basics, operators and variables (CH/PT)

Java Basics, operators and variables (CH/PT)

University

16 Qs

6-sinfl. Ofis dasturlari va Scratch

6-sinfl. Ofis dasturlari va Scratch

6th Grade - University

15 Qs

Asesmen Berpikir Komputasi

Asesmen Berpikir Komputasi

8th Grade - University

15 Qs

Python Programming Quiz

Python Programming Quiz

Assessment

Quiz

Information Technology (IT)

University

Practice Problem

Medium

Created by

Abhishek Swami

Used 1+ times

FREE Resource

AI

Enhance your content in a minute

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

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the primary purpose of a loop counter?

To store data

To terminate a loop immediately

To keep track of the number of iterations

To generate random values

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output of the following code? count = 0 while count < 3: print(count, end=" ") count += 1

1 2 3

0 1 2

0 1 2 3

Infinite loop

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following best describes a flag variable in loops?

A variable that breaks the loop

A constant value

A boolean variable used to control loop execution

A variable that prints the output

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output of this code using a flag? found = False numbers = [1, 3, 5, 7, 9] for num in numbers: if num == 5: found = True print(found)

True

False

5

None

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is an example of a sentinel-controlled loop?

Loop with a flag variable

Loop that stops when a special value is entered

Loop with a counter only

Infinite loop

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output of this sentinel loop? while True: n = int(input("Enter a number (-1 to stop): ")) if n == -1: break print(n)

3 6 -1

3 6

-1

No output

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which is the correct syntax of Python’s ternary operator?

if condition: x else y

x if condition else y

condition ? x : y

x else y if condition

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?