1|Page
D522 Python for IT Automation PA 2026 UPDATE
VERSION Western Governors University||Verified
Exam!!!
Which function should be used to add data to a file, such
as a network configuration file? - Answers-write()
Based on the Python code snippet:
def greet(name, greeting = "Welcome to WGU"):
return f"{greeting}, {name}!"
What is the purpose of the first line of code? - Answers-To
define a function with a default greeting
This Python code snippet returns a syntax error when run:
def multiply_numbers(num1, num2)
result = num1 * num2
return result
, 2|Page
num1 = 5
num2 = 8
print(multiply_numbers(num1, num2))
Which code adjustment will resolve the syntax error? -
Answers-Add a colon after def multiply_numbers(num1,
num2).
Based on the Python snippet:
devices = ["router01", "switch01", "modem01",
"gateway01", "printer01"]
Which data structure is being used to store the names for
various types of devices within devices? - Answers-List
Based on the Python snippet:
value = input("Enter a number: ")
result = int(value) + 10
D522 Python for IT Automation PA 2026 UPDATE
VERSION Western Governors University||Verified
Exam!!!
Which function should be used to add data to a file, such
as a network configuration file? - Answers-write()
Based on the Python code snippet:
def greet(name, greeting = "Welcome to WGU"):
return f"{greeting}, {name}!"
What is the purpose of the first line of code? - Answers-To
define a function with a default greeting
This Python code snippet returns a syntax error when run:
def multiply_numbers(num1, num2)
result = num1 * num2
return result
, 2|Page
num1 = 5
num2 = 8
print(multiply_numbers(num1, num2))
Which code adjustment will resolve the syntax error? -
Answers-Add a colon after def multiply_numbers(num1,
num2).
Based on the Python snippet:
devices = ["router01", "switch01", "modem01",
"gateway01", "printer01"]
Which data structure is being used to store the names for
various types of devices within devices? - Answers-List
Based on the Python snippet:
value = input("Enter a number: ")
result = int(value) + 10