1Z0-811 • Timed Practice Test 4
This is a timed practice session. You have 10 minutes to answer 10 questions — approximately 1 minute per question, matching real 1Z0-811 exam pace. Answer every question before time expires.
Time remaining
10:00
Exam-pace drill
Allow 1 minute per question. On the real 1Z0-811 exam you have approximately 72 seconds per question — this session trains you to maintain that pace under pressure.
Given the code: int[] arr = {1,2,3}; for(int x : arr) { if(x==2) continue; System.out.print(x); } What is the output?