PCEP Section 4B: the function and its environment

PCEP Section 4B: the function and its environment

12th Grade

10 Qs

quiz-placeholder

Similar activities

Python Review - Functions

Python Review - Functions

9th - 12th Grade

10 Qs

Python Classes Quiz

Python Classes Quiz

9th - 12th Grade

15 Qs

Gateway Level 3 Python Quiz 3

Gateway Level 3 Python Quiz 3

9th - 12th Grade

15 Qs

Functions in Python

Functions in Python

9th - 12th Grade

15 Qs

J277 - 2.2 - Functions in Python

J277 - 2.2 - Functions in Python

10th Grade - University

10 Qs

Python revision

Python revision

10th Grade - University

15 Qs

Python Functions

Python Functions

12th Grade

15 Qs

Section 4A: Decompose the code using functions

Section 4A: Decompose the code using functions

12th Grade

14 Qs

PCEP Section 4B: the function and its environment

PCEP Section 4B: the function and its environment

Assessment

Quiz

Computers

12th Grade

Medium

Created by

Misti McDaniel

Used 3+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following best describes the difference between a parameter and an argument in Python?

A parameter is the value passed to a function, while an argument is the variable in the function definition.

A parameter is the variable in the function definition, while an argument is the value passed to the function.

Both terms mean the same thing in Python.

A parameter is always a string, while an argument is always a number.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of the following code? ```python def greet(name, message="Hello"): print(message, name) greet("Alice") ```

Hello Alice

Alice Hello

Error: missing argument

Hello

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is an example of passing arguments by keyword in Python?

func(1, 2)

func(a=1, b=2)

func(1, b=2)

func(1, 2, 3)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be printed by the following code? ```python x = 5 def foo(): x = 10 print(x) foo() print(x) ```

10 10

5 10

10 5

5 5

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement about default parameter values in Python is correct?

Default parameter values must always be provided when calling the function.

Default parameter values are specified in the function definition and used if no argument is provided.

Default parameter values can only be integers.

Default parameter values are specified when calling the function.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given the following function definition, which call will result in an error? ```python def add(a, b=2, c=3): return a + b + c ```

add(1)

add(1, 4)

add(1, 4, 5)

add(a=1, c=5, b=4)

add(b=4, c=5)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? ```python x = 1 def change(): global x x = 2 change() print(x) ```

1

2

Error: x is not defined

None

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?