Problem Statement - B02B-2017D
class Test: rollno=1 marks=75 def __init__(self,r,m): #function 1 self.rollno=r self.marks=m def assign(self,r,m): #function 2 rollno = n marks = m def check(self): #function 3 print self.rollno,self.marks print rollno,marks
(i) In the above class definition, both the functions – function 1 as well as function
2 have similar definition. How are they different in execution?
(ii) Write statements to execute function 1 and function 2.
Solution
CSKC| Created: 12-Jan-2019 | Updated: 12-Jan-2019|CBSE12D-2017