17 Analyzethefollowingcode:()class A:def __init__(self):self.setI(20)def setI(self,i):self.i= 2 *i;class B(A):def __init__(self):super().__init__()print("ifromBis",self.i)def setI(self,i):self.i= 3 *i;b = B()
A
The __init__ method of class A is not called.
B
The __init__ method of class A is called and it displays "i from B is 0".
C
The __init__ method of class A is called and it displays "i from B is 40".
D
The __init__ method of class A is called and it displays "i from B is 60".