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(student34.name)

What is the output?

(1 point)
Responses

Maria

Maria

Jane

Jane

student34

student34

10

The output of the program would be:

Maria