Python Functions Quiz

Python Functions Quiz

12th Grade

10 Qs

quiz-placeholder

Similar activities

Arduino Functions Syntax

Arduino Functions Syntax

12th Grade

10 Qs

Fingerprint Classification

Fingerprint Classification

9th - 12th Grade

10 Qs

Understanding Programming Concepts

Understanding Programming Concepts

12th Grade

15 Qs

Python - Class

Python - Class

12th Grade - University

11 Qs

Functions (C++ and ESP32)

Functions (C++ and ESP32)

12th Grade - University

15 Qs

Python Definitions

Python Definitions

10th - 12th Grade

12 Qs

Python

Python

9th - 12th Grade

15 Qs

Recap Topic 3.5 Method

Recap Topic 3.5 Method

11th - 12th Grade

7 Qs

Python Functions Quiz

Python Functions Quiz

Assessment

Quiz

Education

12th Grade

Medium

Created by

Christopher Maguire

Used 2+ times

FREE Resource

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

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?