Functions defined inside a class are called as ___.
0/1
The variables which are defined inside the class is ___by default.
1/1
In Python, everything is a _____________
0/1
Which of the following is the output of thefollowing program?-----------------------------------------Class Student:def __init__(self, name):self.name=nameS=Student(“Tamil”)print(S.name)
0/1
___ is a template for the object
0/1
A private class variable is prefixed with
0/1
In Python, ___ method is used as destructor.
1/1
___ is a special method gets executed automatically when an object exit from the scope.
1/1
Find the output of the following:class Sample:x, y = 10, 20S = Sample()print (S.x + S.y)
1/1
In Python, the class method must have the first argument named as___.
0/1
Which of the following are the key features of an Object Oriented Programming language?
0/1
___ is the main building block in Python.
0/1
Which of the following method is used as destructor?
0/1
Functions defined inside a class:
1/1
Class members are accessed through which operator?
0/1
In Python, there is a special function called___which act as a Constructor.
1/1
___ method is used to initialize the class variables.
0/1
Which of the following class declaration is correct?
0/1
___ is the key feature of Object Oriented Programming.
0/1
Every class has a unique name followed by a ___ symbol.
0/1
init function must begin and end with ___
0/1
A variable prefixed with ___ becomes private.
1/1
The process of creating an object is called as:
1/1
Which of the following method is automatically executed when an object is created?
0/1
Any class member ie. class variable or method can be accessed by using object with a ___operator.
0/1
Which of the following is the private class variable?
0/1
the special function that is automatically executed when an object of a class is created. Constructor
0/1
Class variable and methods are together known as ___ of the class.
0/1
The process of creating object is called as___
0/1
___ is a collection of data and function that act on those data.
1/1