How many objects and object references would we have if the following code is executed?

Student first_st = new Student();
Student second_st = new Student();
Student third_st = second_st;
2 objects, 3 references
  • 3 objects, 2 references
  • 2 objects, 2 references
  • 3 objects, 3 references

There are no hints for this question