Which of the following would properly create a new student? class Student: def __init__(self, name, gpa, grade): self.name = name self.gpa = gpa self.grade = grade (1 point) Responses s1 = Student(3.4, “Jorge”, 12) s1 = Student(3.4, “Jorge”, 12) s1 = Student(“Jorge”, 3.4, 12) s1 = Student(“Jorge”, 3.4, 12) s1 = Student( “Jorge”, 12) s1 = Student( “Jorge”, 12) s1 = Student(self,“Jorge”, 3.4, 12)

The correct response is: s1 = Student("Jorge", 3.4, 12)

The correct way to create a new student is:

s1 = Student("Jorge", 3.4, 12)

In the given options, this is the only choice where the arguments are in the correct order: name, gpa, and grade. The other options have either incorrect order of arguments or additional unnecessary parameters like "self".

The correct answer to properly create a new student is:

s1 = Student("Jorge", 3.4, 12)