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
7. PYTHON FUNCTIONS -2

Quiz
•
12th Grade
14 questions
Python User Defined Functions

Quiz
•
12th Grade
10 questions
GDScript Quiz - Lesson 2 - Variables & Functions

Quiz
•
12th Grade
11 questions
Python functions

Quiz
•
12th Grade
10 questions
Functions In Python

Quiz
•
12th Grade
13 questions
Python Functions

Quiz
•
9th - 12th Grade
10 questions
J277 - 2.2 - Functions in Python

Quiz
•
10th Grade - University
15 questions
Python revision

Quiz
•
10th Grade - University
Popular Resources on Wayground
18 questions
Writing Launch Day 1

Lesson
•
3rd Grade
11 questions
Hallway & Bathroom Expectations

Quiz
•
6th - 8th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
40 questions
Algebra Review Topics

Quiz
•
9th - 12th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
19 questions
Handbook Overview

Lesson
•
9th - 12th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade
Discover more resources for Computers
40 questions
Algebra Review Topics

Quiz
•
9th - 12th Grade
19 questions
Handbook Overview

Lesson
•
9th - 12th Grade
62 questions
Spanish Speaking Countries, Capitals, and Locations

Quiz
•
9th - 12th Grade
20 questions
First Day of School

Quiz
•
6th - 12th Grade
6 questions
Maier - AMDM - Unit 1 - Quiz 1 - Estimation

Quiz
•
12th Grade
21 questions
Arithmetic Sequences

Quiz
•
9th - 12th Grade
21 questions
9th Grade English Diagnostic Quiz

Quiz
•
9th - 12th Grade
7 questions
Characteristics of Life

Interactive video
•
11th Grade - University