Given that Student is a class, how many reference variables and objects are created by the following code?
Student studentName, studentId;
studentName = new Student();
Student stud_class = new Student();
a) Three reference variables and two objects are created.
b) Two reference variables and two objects are created.
c) One reference variable and two objects are created.
d) Three reference variables and three objects are created.