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();

Posted on by