EXPERTY DESIGNED 1Z0-808 PRACTICE TEST

Oracle 1Z0-808 Exam Questions
Total Questions: 608
Java SE 8 Programmer I
Updated On: Nov 12, 2025
Page : 1-61
Question 1

Given this code for a Planet object:

HPE6-A70
What is the output?

Options :
Answer: C

Question 2

How many String objects are there in the HEAP memory, when control is at Line 9?

1. package com.udayan.oca;

2.  

3. public class Test {

4.      public static void main(String[] args) {

5.          String s1 = new String("Java"); //Line 3

6.          String s2 = "JaVa"; //Line 4

7.          String s3 = "JaVa"; //Line 5

8.          String s4 = "Java"; //Line 6

9.          String s5 = "Java"; //Line 7

10.  

11.          int i = 1; //Line 9

12.  

13.      }

14. }

Options :
Answer: B

Question 3

Consider below code of Test.java file:

1. package com.sampleproject.oca;

2.  

3. public class Test {

4.     public static void main(String[] args) {

5.         int i = 1;

6.         int j = 5;

7.         int k = 0;

8.         A: while(true) {

9.             i++;

10.             B: while(true) {

11.                 j--;

12.                 C: while(true) {

13.                     k += i + j;

14.                     if(i == j)

15.                         break A;

16.                     else if (i > j)

17.                         continue A;

18.                     else 

19.                         continue B;

20.                 }

21.             }

22.         }

23.         System.out.println(k);

24.     }

25. }

What will be the result of compiling and executing Test class?

Options :
Answer: C

Question 4

Which of the following is not a valid array declaration?

Options :
Answer: A

Question 5

Which of the following is a checked Exception?

Options :
Answer: D

© Copyrights Oracledumps 2025. All Rights Reserved

We use cookies to ensure that we give you the best experience on our website (Oracledumps). If you continue without changing your settings, we'll assume that you are happy to receive all cookies on the Oracledumps.