Question 1
How is a class variable accessed in python?
Question 2
Which variable type is accessible only within the scope of a specific method in a class?
Question 3
Where are instance variables usually initialized in python?
Question 4
What is the default scope of an instance variable in python?
Question 5
What happens if you modify a class variable using an instance/object in python?
Question 6
Which variable is unlque to each instance/object of a class in python?
Question 7
Which variable is shared among all instances of a class in python?
Question 8
Which variable type is associated with the class rather than any object/instance in python?
Question 9
What type of variable is declared inside a class but outside of any method, and is accessible through all instances of the class?
Question 10
Which keyword in python is used to define a class variable?