Python for IT Automation - D522 PA multiple choice
D522 Python for IT Automation –
Complete Performance Assessment
Practice Test (Multiple Choice)
S
Which function should be used to add data to a file, such write()
as a network configuration file?
3 multiple choice options
Based on the Python code snippet: To define a function with a default greeting
3 multiple choice options
def greet(name, greeting = "Welcome to WGU"):
return f"{greeting}, {name}!"
What is the purpose of the first line of code?
This Python code snippet returns a syntax error when run: Add a colon after def multiply_numbers(num1, num2).
3 multiple choice options
def multiply_numbers(num1, num2)
result = num1 * num2
return result
num1 = 5
num2 = 8
print(multiply_numbers(num1, num2))
Which code adjustment will resolve the syntax error?
Based on the Python snippet: List
3 multiple choice options
devices = ["router01", "switch01", "modem01", "gateway01",
"printer01"]
Which data structure is being used to store the names for
various types of devices within devices?