Search Header Logo

Python Functions Quiz

Authored by Christopher Maguire

Education

12th Grade

Used 3+ times

Python Functions Quiz
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a function in Python?

A way to print output to the screen

A block of reusable code that performs a specific task

A special type of variable

A type of loop

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What keyword is used to define a function in Python?

function

define

def

fn

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will this code print? def greet(): print("Hello, world!") greet()

greet()

"Hello, world!"

Nothing, because the function is not called

An error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the return statement in a function?

It outputs data to the console

It stops the function execution

It sends a value back to where the function was called

It prints the function name

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will this function return? def add(a, b): return a + b result = add(3, 5) print(result)

3

5

8

Nothing, because return does not print

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? def multiply(x, y=2): return x * y print(multiply(4))

4

2

8

An error

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is true about function parameters and arguments?

Parameters are the actual values passed to a function

Arguments are the names defined in the function definition

Parameters are placeholders used in a function definition

Arguments and parameters are the same thing

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?