Question 1
Which method type in python's oop doesn't have access to either the class or instance variables?
Question 2
Which method type in python's oop is bound to the class and not its instances?
Question 3
What is the purpose of a static method in python's oop?
Question 4
Which method in python's oop is automatically called when an object is destroyed?
Question 5
What is the primary difference between a class method and an instance method in python?
Question 6
Which method type is used to deallocate the memory assigned to an object in python?
Question 7
What is the purpose of a class method in python?
Question 8
Which method is used to represent the string representation of an object in python?
Question 9
Which type of method in python's oop is used to initiallze object attributes at the time of object creation?
Question 10
In python, what is the first parameter that instance methods take by convention?