Which statement is correct, given the following control flow diagram: class Pa rent def init _ (self) self. parent _ value = 5 def pa rent _ method( self) € return(self.parent_value 2) class Child(Parent) def init _ (self) super() self. child value = 10 def child _ method(self) + self. child _ value) c = Child()
A - print(c.child_method() ) returns 10
B - print(c.parent_method() ) returns 10
C - print(c.child_method() ) returns 20
D - print(c.parent_method() ) returns 20