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;
There are no hints for this question