EXPERTY DESIGNED 1Z0-808 PRACTICE TEST

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

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

1. //Test.java

2. package com.udayan.oca;

3.  

4. class Point {

5.     static int x;

6.     private int y;

7.     

8.     public String toString() {

9.         return "Point(" + x + ", " + y + ")";

10.     }

11. }

12.  

13. public class Test {

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

15.         Point p1 = new Point();

16.         p1.x = 100;

17.         p1.y = 200;

18.         

19.         Point p2 = new Point();

20.         p2.x = 100;

21.         p2.y = 200;

22.         

23.         System.out.println(p1);

24.     }

25. }

Options :
Answer: G

Question 2

Which of the following is a checked Exception?

Options :
Answer: D

Question 3

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 4

Given the code fragment:

1Z0-808
What is the result?

Options :
Answer: C

Question 5

Examine the content of App.java:

1Z0-808
Which is true?

Options :
Answer: C

© 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.