Question: Which two code fragments correctly create and initialize a static array of int elements? (Choose two.) A. static final int[] a 3( 100,200 }; B.

Which two code fragments correctly create and initialize a static array of int elements? (Choose two.) A. static final int[] a 3( 100,200 }; B. static final intl a; static { a=new int[2]; ao1=100, a[1-200; } c. static final int[] a = new int[2]{ 100,200 }; D. static final intl a; static void init() { a = new int[3]. a[?=100; a[1]=200; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
