Python Functions Quiz

Python Functions Quiz

6th - 8th Grade

7 Qs

quiz-placeholder

Similar activities

Functions

Functions

8th Grade

10 Qs

Functions Review (codeHS Tracy Python)

Functions Review (codeHS Tracy Python)

6th - 8th Grade

12 Qs

Python Fundamentals

Python Fundamentals

8th Grade

12 Qs

Python Quiz - 9

Python Quiz - 9

6th - 8th Grade

10 Qs

PYTHON (Functions)

PYTHON (Functions)

6th Grade

10 Qs

Python Basics

Python Basics

8th - 10th Grade

10 Qs

Modules, Packages, and Libraries

Modules, Packages, and Libraries

8th Grade

10 Qs

KODEKIDDO HACK #MLH3

KODEKIDDO HACK #MLH3

4th Grade - University

10 Qs

Python Functions Quiz

Python Functions Quiz

Assessment

Quiz

Computers

6th - 8th Grade

Medium

Created by

Austin OBrien

Used 3+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What keyword do we start with when creating our own functions in Python?

function

def

void

main

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does 'def' stand for?

deft

defend

definitely

define

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following Python code?

def add(a, b):
    return a + b

result = add(3, 5)
print(result)

8

5

3

35

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

To stop the execution of the function

To return a value from the function

To print a message to the console

To define a new variable

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When declaring a function, the variables inside the parentheses are called what? Example:

def add(num1, num2)

Copies

output variables

input variables

strings

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When we want to run a function, we...

Define it

Call it

Declare it

Copy it

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A function can return a value or many values back to where it was first "called".

True

False

Discover more resources for Computers