Consider this program:

class Students:

def __init__(self, name, grade):

self.name = name

self.grade = grade



student34 = Students("Maria", 10)

student35 = Students("Jane", 9)

How many objects are created?

(1 point)
Responses

none

none

one

one

two

two

three

Two objects are created: student34 and student35.