Company: IndusInd bank on-campus_19may
Difficulty: medium
What is the output of the following Python code? Code class Student: def __init__(self, num, name, age, student_number): self.__number = num self.name = name self.age = age self.__student_nuumber = student_number number = 100 def __str__(self): print(self.__number) def update_number(self, number): if number < 1000 and number > 0: self.__account_balance += amount def getstudentNumber(self): print(self.__number) def show_number(self): print(self.__student_nuumber) c1 = Student(123, "Alice", 44, 1000) c2 = c1 c2.__student_nuumber = 342 Student.getstudentNumber(c1) Options AttributeError: 'Student' object has no attribute '_student_number' 123 Error in Line 23 . getstudentNumber is not a static method 342 Input Format There is no input for this question. Output Format Print the program's output exactly as the program would emit it.