PROGRAMMING IN PYTHON - UNIT II - TEST 1 MCQS

PROGRAMMING IN PYTHON - UNIT II - TEST 1 MCQS

University

15 Qs

quiz-placeholder

Similar activities

Conditional and Iterative Statements

Conditional and Iterative Statements

University

10 Qs

Python Programming Basics

Python Programming Basics

University

14 Qs

Computer Science Quiz 02

Computer Science Quiz 02

10th Grade - University

19 Qs

PHP Quiz 1

PHP Quiz 1

University

20 Qs

Python Programming Quiz

Python Programming Quiz

University

10 Qs

[AP CSP] FOR & WHILE LOOPS

[AP CSP] FOR & WHILE LOOPS

9th Grade - University

20 Qs

Python Prowess

Python Prowess

University

20 Qs

Exam 1 Practice

Exam 1 Practice

University

15 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?