Unit 2 Python

Unit 2 Python

University

10 Qs

quiz-placeholder

Similar activities

ระบบทางเทคโนโลยี ม.4

ระบบทางเทคโนโลยี ม.4

10th Grade - University

10 Qs

Komponen Jaringan & Pengkabelan

Komponen Jaringan & Pengkabelan

University

15 Qs

Basic on Operating System

Basic on Operating System

University

10 Qs

Evaluasi Pertemuan 12 DRPL TI-3B

Evaluasi Pertemuan 12 DRPL TI-3B

University

15 Qs

Pop Quiz- Abstraction, Algorithm

Pop Quiz- Abstraction, Algorithm

University

14 Qs

Kontainerisasi dan DevOps

Kontainerisasi dan DevOps

University

10 Qs

Kuis Dadakan ;)

Kuis Dadakan ;)

10th Grade - University

15 Qs

CHAPTER 1: COMPUTER SECURITY REVIEW

CHAPTER 1: COMPUTER SECURITY REVIEW

University

10 Qs

Unit 2 Python

Unit 2 Python

Assessment

Quiz

Computers

University

Practice Problem

Easy

Created by

Vishwanath Vishwanath

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...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

x = 5

if x > 3:

print("Hello")

elif x > 2:

print("Hi")

else:

print("Bye")

Hello

Bye

Hi

Error

Answer explanation

The first if condition is True, so Hello is printed, and the elif and else blocks are skipped.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct syntax for a for loop in Python?

for x in 10:

for x = 0; x < 10; x++:

for x range(10):

for x in range(10);

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements about while loops is correct?

A while loop runs only once

A while loop executes as long as the condition is True

A while loop runs a fixed number of times

A while loop cannot be used with else

Answer explanation

A while loop executes as long as the condition is True
Explanation: The while loop continues execution until the condition evaluates to False.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

for i in range(5):

if i == 3:

break

print(i)

0 1 2 3 4

0 1 2 3

0 1 2

1 2 3

Answer explanation

The break statement stops the loop when i == 3, so 3 and 4 are not printed.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

for i in range(5):

pass

print("Loop Completed")

Loop Completed

0 1 2 3 4 Loop Completed

Error

None

Answer explanation

The pass statement does nothing and is used as a placeholder.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of an if statement in Python?

To repeat a block of code

To check a condition and execute code if it's True

To stop the program

To create a function

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

x = 10

if x > 5:

print("Big number")

Big number

10

Error

No output

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?

Discover more resources for Computers