6/19/25, 5:25 PM
WGU D522 Python for IT Automation | OA | Objective Assessment
| 61 Questions and Answers | 2025 Update | 100% Correct.
Correct 61
Incorrect
WGU D522 Python for IT Automation | OA | Objective Assessment | 61
Questions and Answers | 2025 Update | 100% Correct.
61 Correct terms
Questions and answers
Term
Give this one a go later!
, WGU D522 Python for IT Automation
6/19/25, 5:25 PM
The set of rules that dictate the
combinations of symbols and The graphical interface used to write
keywords that form valid Python Python code.
programs
The collection of libraries available The process of debugging Python
for Python programming. code for errors.
Don't know?
2 of 61
Term
What does unpacking involve in Python?
Give this one a go later!
Extracting elements from
Combining multiple variables into a
iterable objects and assigning
single list
them to individual variables
Sorting elements within an iterable
Creating a copy of an iterable object
object
Don't know?
3 of 61
, WGU D522 Python for IT Automation
6/19/25, 5:25 PM
Term
What is the purpose of indentation in Python?
Give this one a go later!
To add comments for better
To define blocks of code
readability.
To specify the type of data being
To create visual elements in the code.
used.
Don't know?
4 of 61
Term
What does this built in Python function do?: map(), filter()
Give this one a go later!
calculates the sum of all elements in a
creates a new list from existing lists
list
applies a function to elements
or filters elements based on a returns the first element of a list
, WGU D522 Python for IT Automation
6/19/25, 5:25 PM
function
Don't know?
5 of 61
Term
What does this built in Python function do?: len()
Give this one a go later!
creates a new list from an existing
checks if a value exists in a sequence.
one.
determines the length of a
converts a string to uppercase.
sequence (string, list, tuple)
Don't know?
6 of 61
Term
What are the two main escape characters?
Give this one a go later!