Given the following declaration,
select the correct way to get the number of elements in the array, assuming that the array has been initialized.
int[] v;
Select 1 option
Correct Option is : C
All types of arrays are objects. i.e. v
instanceof Object is true.