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
Which method in python's oop is automatically called when an object is destroyed?
Question 4
What is the purpose of a class method in python?
Question 5
Which method type is used to deallocate the memory assigned to an object in python?
Question 6
What is the purpose of a static method in python's oop?
Question 7
Which method is used to represent the string representation of an object in python?
Question 8
Which type of method in python's oop is used to initiallze object attributes at the time of object creation?
Question 9
In python, what is the first parameter that instance methods take by convention?
Question 10
What is the primary difference between a class method and an instance method in python?