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
5 questions
Tìm hiểu truyền thống nhà trường

Quiz
•
2nd Grade - University
12 questions
Основи Python

Quiz
•
7th - 12th Grade
10 questions
PCEP Section 1E: Perform Input/Output console operations

Quiz
•
12th Grade
12 questions
Quiz Input Python

Quiz
•
12th Grade
13 questions
Writing files in python

Quiz
•
9th - 12th Grade
10 questions
Mastering Text File Handling in Python

Quiz
•
12th Grade
10 questions
Python Math

Quiz
•
1st - 12th Grade
10 questions
CS Python Fundamentals Test 12 PRACTICE

Quiz
•
9th - 12th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
9/11 Experience and Reflections

Interactive video
•
10th - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
9 questions
Tips & Tricks

Lesson
•
6th - 8th Grade
Discover more resources for Computers
20 questions
Digital Citizenship

Quiz
•
8th - 12th Grade
35 questions
Computer Baseline Examination 2025-26

Quiz
•
9th - 12th Grade
13 questions
Problem Solving Process

Quiz
•
9th - 12th Grade
10 questions
Understanding Algorithms with Pseudocode and Flowcharts

Interactive video
•
9th - 12th Grade
19 questions
AP CSP Unit 1 Review (code.org)

Quiz
•
10th - 12th Grade