PCEP Section 4B: the function and its environment

Quiz
•
Computers
•
12th Grade
•
Medium
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
Similar Resources on Wayground
10 questions
J277 - 2.2 - Functions in Python

Quiz
•
10th Grade - University
10 questions
7. PYTHON FUNCTIONS -2

Quiz
•
12th Grade
10 questions
Mastering Python Functions

Quiz
•
12th Grade
9 questions
Java Programming with Minecraft

Quiz
•
1st - 12th Grade
12 questions
Functions Parameters

Quiz
•
10th - 12th Grade
14 questions
Python Control Structures Vocab quiz

Quiz
•
9th - 12th Grade
15 questions
PCEP Section 2B: Perform different types of iterations

Quiz
•
12th Grade
15 questions
Python revision

Quiz
•
10th Grade - University
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
15 questions
Core 4 of Customer Service - Student Edition

Quiz
•
6th - 8th Grade
15 questions
What is Bullying?- Bullying Lesson Series 6-12

Lesson
•
11th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade