Oracle
1Z0-811 · Question #67
1Z0-811 Question #67: Real Exam Question with Answer & Explanation
Sign in or unlock 1Z0-811 to reveal the answer and full explanation for question #67. The question stem and answer options stay visible for context.
Arrays and Logic
Question
Given the code fragment:
int num[] = new int[3];
num[1] = 10;
num[2] = 15;
List<Integer> lst = new ArrayList<> (3);
lst.add(10);
lst.add(15);
System.out.println (num);
System.out.println (lst);
What is the result?
Options
- Aa memory address1 in hexadecimal number format a memory address2 in hexadecimal number format
- B10, 15
- C0, 10, 15
- Da memory address in hexadecimal number format [10, 15]
Unlock 1Z0-811 to see the answer
You've previewed enough free 1Z0-811 questions. Unlock 1Z0-811 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.
Topics
#Array toString()#ArrayList toString()#Object representation#Collections vs Arrays