What is the value of r after the following code executes?
myList = [2, 3, 5, 7, 11]yourList = list(myList)r = yourList is myList
A. [2, 3, 5, 7, 11]
B. True
C. None
D. False
Answer: D
Computer Science & Information Technology