Functions in Python

Functions in Python

10th Grade

10 Qs

quiz-placeholder

Similar activities

uwu

uwu

KG - Professional Development

10 Qs

Python Quiz

Python Quiz

1st Grade - Professional Development

6 Qs

Λίστες και Strings σε Python 2.7

Λίστες και Strings σε Python 2.7

10th Grade

11 Qs

Intro to Python Programming Quiz 9D

Intro to Python Programming Quiz 9D

1st Grade - University

14 Qs

Câu lệnh Rẽ nhánh trong Python

Câu lệnh Rẽ nhánh trong Python

10th Grade

10 Qs

Unit 8 Computer Science I

Unit 8 Computer Science I

9th - 10th Grade

9 Qs

Windows/Excel Keyboard Shortcuts

Windows/Excel Keyboard Shortcuts

KG - University

15 Qs

INFORMATIKA 10 S2 HAL 012

INFORMATIKA 10 S2 HAL 012

10th Grade

5 Qs

Functions in Python

Functions in Python

Assessment

Quiz

Created by

Deepak M

Other

10th Grade

2 plays

Medium

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the output of the following function call def function(name,age=22):

print(name,age)

function('charlie',25)

charlie

25

charlie 25

name 25

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Select which true for Python function

A function is a code block that only executes when called and always returns a value.

A function only executes when it is called and we can reuse it in a program

Python doesn’t support nested function

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following are the two main parts of every function in Python?

The function heading and the function body

The function signature and the function corpus

The function signature and the function body

The function head and the function tail

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following function:

def square(num):

num_sqaured=num**2

return num_squared

def square(num):

num_squared=num**2

return num_squared

None of the above

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following keywords are used to create a loop in Python?

if

for

foreach

loop

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following loop:

for num in range(1,5):

print(num)

1

2

3

4

5

0

1

2

3

4

1

2

3

4

2

3

4

5

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

x = 0

while x < 10:

x = x + 1

What’s the value of x after the above code snippet executes?

0

9

10

11

Explore all questions with a free account

or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?