Oracle
1Z0-851 · Question #14
1Z0-851 Question #14: Real Exam Question with Answer & Explanation
Sign in or unlock 1Z0-851 to reveal the answer and full explanation for question #14. The question stem and answer options stay visible for context.
Question
Which two code fragments correctly create and initialize a static array of int elements? (Choose two.)
Options
- Astatic final int[] a = { 100,200 };
- Bstatic final int[] a; static { a=new int[2]; a[0]=100; a[1]=200; }
- Cstatic final int[] a = new int[2]{ 100,200 };
- Dstatic final int[] a; static void init() { a = new int[3]; a[0]=100; a[1]=200; }
Unlock 1Z0-851 to see the answer
You've previewed enough free 1Z0-851 questions. Unlock 1Z0-851 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.