1.

 class test:     def __init__(self,a):         self.a=a      def display(self):         print(self.a)obj=test()obj.display()
9._____ represents an entity in the real world with its identity and behaviour.

A. A method
B. An object
C. A class
D. An operator
Answer» C. A class


Discussion

No Comment Found