Python Functions Quiz

Python Functions Quiz

6th - 8th Grade

7 Qs

quiz-placeholder

Similar activities

Python Functions Test

Python Functions Test

6th Grade

8 Qs

PYTHON (Functions)

PYTHON (Functions)

6th Grade

10 Qs

Homework 2- Python Data Types

Homework 2- Python Data Types

8th Grade

10 Qs

Modules, Packages, and Libraries

Modules, Packages, and Libraries

8th Grade

10 Qs

Python Variables

Python Variables

7th - 12th Grade

10 Qs

python quiz

python quiz

6th Grade - Professional Development

10 Qs

Python Introduction Quiz

Python Introduction Quiz

8th - 9th Grade

12 Qs

Python Quiz - 9

Python Quiz - 9

6th - 8th Grade

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