Home / Java Programming / Declarations and Access Control :: Discussion

Discussion :: Declarations and Access Control

  1. What will be the output of the program?

    public class ArrayTest  {      public static void main(String[ ] args)     {          float f1[ ], f2[ ];          f1 = new float[10];          f2 = f1;          System.out.println("f2[0] = " + f2[0]);      }  } 

  2. A.
    It prints f2[0] = 0.0
    B.
    It prints f2[0] = NaN
    C.
    An error at f2 = f1; causes compile to fail.
    D.
    It prints the garbage value.

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    Option A is correct. When you create an array (f1 = new float[10];) the elements are initialises to the default values for the primitive data type (float in this case - 0.0), so f1 will contain 10 elements each with a value of 0.0. f2 has been declared but has not been initialised, it has the ability to reference or point to an array but as yet does not point to any array. f2 = f1; copies the reference (pointer/memory address) of f1 into f2 so now f2 points at the array pointed to by f1.

    This means that the values returned by f2 are the values returned by f1. Changes to f1 are also changes to f2 because both f1 and f2 point to the same array.


Be The First To Comment