EXPERTY DESIGNED 1Z0-808 PRACTICE TEST

Oracle 1Z0-808 Exam Questions
Total Questions: 608
Java SE 8 Programmer I
Updated On: Jan 27, 2026
Page : 1-61
Question 1

Consider below code:

1. //Test.java

2. package com.udayan.oca;

3.  

4. public class Test {

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

6.         StringBuilder sb = new StringBuilder(100);

7.         System.out.println(sb.length() + ":" + sb.toString().length());

8.     }

9. }

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

Options :
Answer: B

Question 2

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

package com.udayan.oca;

public class Test {

     public static void main(String[] args) {

         String str = "Java Rocks!";

         System.out.println(str.length() + " : " + str.charAt(10));

     }

}

Options :
Answer: B

Question 3

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 4

Given the code fragment:

1Z0-808
What is the result?

Options :
Answer: B

Question 5

Which of the following is not a valid array declaration?

Options :
Answer: A

© Copyrights Oracledumps 2026. 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.