Consider this program:

class Students:

def __init__(self, name, grade):

self.name = name

self.grade = grade



student34 = Students("Maria", 10)

student35 = Students("Jane", 9)

print(student35.self)

What is the output?

(1 point)
Responses

Maria

Maria

10

10

False

False

an error message

The output of the program is "Maria".