a python is a snake not a launguage
Answer: The correct answer is A. I just answered this question myself!
list1 = [12500, 35000, 12000, 40000, 55000,60000]
print(sum(list1)/len(list1))
We take the sum of all the elements in the list and divide the sum by the quantity of the elements. You can put however many elements in this list and you'll always get the average using the algorithm above.
Answer:
The right answer is option 2: instance variables and their values
Explanation:
Let us define what an object is.
An object is a blueprint of a real-world identity. The instances are the reference to the object. Multiple instances of an object type can be made.
The instance variables and their values help us to determine the state of the object.
Hence,
The right answer is option 2: instance variables and their values