PROGRAMMING IN PYTHON - UNIT II - TEST 1 MCQS

PROGRAMMING IN PYTHON - UNIT II - TEST 1 MCQS

University

15 Qs

quiz-placeholder

Similar activities

Unit 2 Python

Unit 2 Python

University

10 Qs

Python Basics Quiz 1

Python Basics Quiz 1

8th Grade - University

15 Qs

Codecombat Computer Science

Codecombat Computer Science

University

15 Qs

Python Programming Quiz

Python Programming Quiz

9th Grade - University

20 Qs

Round 1

Round 1

University

10 Qs

Python Basics

Python Basics

University

15 Qs

Workshop 2 Review

Workshop 2 Review

University

10 Qs

Python Quiz

Python Quiz

University

12 Qs

PROGRAMMING IN PYTHON - UNIT II - TEST 1 MCQS

PROGRAMMING IN PYTHON - UNIT II - TEST 1 MCQS

Assessment

Quiz

Computers

University

Hard

Created by

MS.SHYAMALADEVI C

Used 8+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword is used to perform decision-making in Python?

  

for

while

if

switch

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code snippet?

   x = 5

   if x > 3:

       print("Greater than 3")

   else:

       print("Less than or equal to 3")

  

Greater than 3

Less than or equal to 3

Invalid syntax

No output

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the "else" statement in an "if-else" block?

  

To execute a block of code if the condition is true

To execute a block of code if the condition is false

To repeat a block of code multiple times

To skip the current iteration of a loop

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which operator is used to combine multiple conditions in a Python if statement?

  

&&

||

&

|

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which loop executes a block of code a fixed number of times?

  

for loop

while loop

do-while loop

switch loop

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code snippet?

   for i in range(3):

       print(i) 

0 1 2

1 2 3

3 2 1

2 1 0

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you exit a loop prematurely in Python?

  

continue

break

return

pass

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?