Given the following line of code:
List students = new ArrayList ();
Identify the correct statement:
Select 1 option
Correct Option is : A
Since you are doing new ArrayList, you are creating an object of class ArrayList.
You are assigning this object to variable "students", which is declared of class List. Reference type means the declared type of the variable.