conditions  function in python

conditions function in python

University

30 Qs

quiz-placeholder

Similar activities

CodeHS Basic Data Structures in Python

CodeHS Basic Data Structures in Python

University - Professional Development

26 Qs

python basic

python basic

University

27 Qs

Java Programming Quiz

Java Programming Quiz

University

26 Qs

XTK022

XTK022

University

25 Qs

Feb 20, 2025 AP CompSci - 1st Period

Feb 20, 2025 AP CompSci - 1st Period

12th Grade - University

25 Qs

Sharda fest 2024

Sharda fest 2024

University

25 Qs

Understanding Loops in Programming

Understanding Loops in Programming

University

25 Qs

CodeChef (Secret Snippet)

CodeChef (Secret Snippet)

University

35 Qs

conditions  function in python

conditions function in python

Assessment

Quiz

Computers

University

Medium

Created by

Prince Kumar

Used 1+ times

FREE Resource

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What will the following code output?

x = 10

if x > 5:

print("Greater than 5")

else:

print("Not greater than 5")

Greater than 5

Not greater than 5

Error

None

2.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What will the following code output?

x = 10

if x > 5 and x < 15:

print("Between 5 and 15")

else:

print("Outside the range")

Between 5 and 15

Outside the range

Error

None

3.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What does the elif keyword do in Python?

Defines a function

Starts a new conditional block

Combines two conditions

None of the above

4.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What is the output of the following code?

def add(a, b):

return a + b

result = add(2, 3)

print(result)

2

3

5

none

5.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What will the following code output?

x = 10

if x > 5:

print("x is greater than 5")

elif x == 5:

print("x is equal to 5")

else:

print("x is less than 5")

x is greater than 5

x is equal to 5

x is less than 5

None

6.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What is the output of this code?

x = 10

if x > 15:

print("x is greater than 15")

elif x > 5:

print("x is greater than 5 but less than or equal to 15")

else:

print("x is less than or equal to 5")

x is greater than 15

x is greater than 5 but less than or equal to 15

x is less than or equal to 5

None

7.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What does the return statement do in a function?

Prints the result

Exits the program

Sends back a value from the function

None of the above

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?