Python Day 2 Quiz

Python Day 2 Quiz

12th Grade

15 Qs

quiz-placeholder

Similar activities

Python-coban

Python-coban

7th - 12th Grade

20 Qs

Python Intermediate Quiz - 1

Python Intermediate Quiz - 1

8th Grade - Professional Development

13 Qs

Python quiz

Python quiz

KG - Professional Development

10 Qs

Python - Bài 4

Python - Bài 4

9th - 12th Grade

15 Qs

Python Bài 2

Python Bài 2

9th - 12th Grade

15 Qs

Quiz Dasar-Dasar Pemrograman Python

Quiz Dasar-Dasar Pemrograman Python

12th Grade - University

15 Qs

Python

Python

9th - 12th Grade

15 Qs

Khởi động cùng Python

Khởi động cùng Python

9th - 12th Grade

10 Qs

Python Day 2 Quiz

Python Day 2 Quiz

Assessment

Quiz

Education

12th Grade

Easy

Created by

durga p

Used 1+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code snippet? x = 10 if x > 5: print("x is greater than 5") else: print("x is less than or equal to 5")

x is less than or equal to 5

x is greater than 5

None

Error

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a valid way to define a function in Python?

function myFunc() {}

def myFunc():

func myFunc[]:

define myFunc()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare a list in Python?

list = [1, 2, 3]

list = (1, 2, 3)

list = {1, 2, 3}

list = <1, 2, 3>

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the continue statement do in a loop?

exit from loop

execute the statement

jump to immediate loop execuetion

skip the execuetion

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code snippet? python def add(x, y=5): return x + y print(add(10))

10

15

5

Error

6.

OPEN ENDED QUESTION

3 mins • 1 pt

How can you check the type of a variable in Python?

Evaluate responses using AI:

OFF

7.

OPEN ENDED QUESTION

3 mins • 1 pt

What is the output of the following code? for i in range(3): print(i)

Evaluate responses using AI:

OFF

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?