Given that Main is a class, how many objects and reference variables are created by the following code?
Main t1, t2, t3, t4; t1 = t2 = new Main (); t3 = new Main ();
Select 1 option
Correct Option is : B
A declared reference variable exists regardless of whether a reference value (i.e. an object) has been assigned to it or not.