Assessment| Actual Questions and Answers
Latest Updated
(Graded A+)
Correct 39
Incorrect 0
WGU D522 Python For IT Automation |Pre-Assessment
Term
write() print()
, input() read()
Don't know?
2 of 39
Term
Which characteristics are associated with tuples in Python?
Give this one a try later!
Unordered and changeable Ordered and unchangeable
Ordered and changeable Unordered and unchangeable
Don't know?
3 of 39
Term
What is the output of the following code?
print(“Hello” + “World”)
Give this one a try later!
, Hello World HelloWorld
Don't know?
4 of 39
Term
Based on the Python list:
numbers = [10, 20, 30, 40]
What is the index position of the element "40"?
Give this one a try later!
numbers[2] numbers[1]
numbers[3] numbers[4]
Don't know?
5 of 39
Term
How do you remove an element from a list in Python?