52. What will be the output of the following Python code?
class A:
def __init__(self, x= 1):
self.x = x
class der(A):
def __init__(self,y = 2):
super().__init__()
self.y = y
def main():
obj = der()
print(obj.x, obj.y)
main()
class A:
def __init__(self, x= 1):
self.x = x
class der(A):
def __init__(self,y = 2):
super().__init__()
self.y = y
def main():
obj = der()
print(obj.x, obj.y)
main()53. What will be the output of the following Python code?
class Demo:
def __check(self):
return " Demo's check "
def display(self):
print(self.check())
class Demo_Derived(Demo):
def __check(self):
return " Derived's check "
Demo().display()
Demo_Derived().display()
class Demo:
def __check(self):
return " Demo's check "
def display(self):
print(self.check())
class Demo_Derived(Demo):
def __check(self):
return " Derived's check "
Demo().display()
Demo_Derived().display()54. Which of the following is false about protected class members?
55. Which of these is not a fundamental features of OOP?
56. What is the main advantage of using encapsulation in object-oriented programming?
57. What will be the output of the following Python code?
class A:
def __init__(self, x, y):
self.x = x
self.y = y
def __str__(self):
return 1
def __eq__(self, other):
return self.x * self.y == other.x * other.y
obj1 = A(5, 2)
obj2 = A(2, 5)
print(obj1 == obj2)
class A:
def __init__(self, x, y):
self.x = x
self.y = y
def __str__(self):
return 1
def __eq__(self, other):
return self.x * self.y == other.x * other.y
obj1 = A(5, 2)
obj2 = A(2, 5)
print(obj1 == obj2)58. All subclasses are a subtype in object-oriented programming.
59. What will be the output of the following Python code?
class Test:
def __init__(self):
self.x = 0
class Derived_Test(Test):
def __init__(self):
Test.__init__(self)
self.y = 1
def main():
b = Derived_Test()
print(b.x,b.y)
main()
class Test:
def __init__(self):
self.x = 0
class Derived_Test(Test):
def __init__(self):
Test.__init__(self)
self.y = 1
def main():
b = Derived_Test()
print(b.x,b.y)
main()