D522 PYTHON FOR IT AUTOMATION - PA MULTIPLE
CHOICE
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
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
print(result)
What purpose does result = int(value) + 10 serve? - Answers - Converts the user's
input into an integer and sums it
CHOICE
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
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
print(result)
What purpose does result = int(value) + 10 serve? - Answers - Converts the user's
input into an integer and sums it