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 the code fragment:

1Z0-808
What is the result?

Options :
Answer: A

Question 2

Given code:

package com.udayan.oca;

 

public class Test {

    public static void main(String[] args) {

        /*INSERT*/

        arr[1] = 5;

        arr[2] = 10;

        System.out.println("[" + arr[1] + ", " + arr[2] + "]"); //Line n1

    }

}

And below statements:

1. short arr [] = new short[2];

2. byte [] arr = new byte[10];

3. short [] arr; arr = new short[3];

4. short [2] arr;

5. short [3] arr;

6. int [] arr = new int[]{100, 100};

7. int [] arr = new int[]{0, 0, 0, 0};

8. short [] arr = {};

9. short [] arr = new short[2]{5, 10};

How many above statements can be used to replace /*INSERT*/, such that on execution, code will print [5, 10] on to the console?

Options :
Answer: C

Question 3

Consider below codes of 2 java files:

1. //Flyable.java

2. package com.sampleproject.oca;

3.  

4. public interface Flyable {

5.     static int horizontalDegree() { //Line n1

6.         return 20;

7.     }

8.  

9.     default void fly() {

10.         System.out.println("Flying at " + horizontalDegree() + " degrees."); //Line n2

11.     }

12.  

13.     void land();

14. }

1. //Aeroplane.java

2. package com.sampleproject.oca;

3.  

4. public class Aeroplane implements Flyable {

5.     public void land() {

6.         System.out.println("Landing at " + -Flyable.horizontalDegree() + " degrees."); //Line n3

7.     }

8.  

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

10.         new Aeroplane().fly();

11.         new Aeroplane().land();

12.     }

13. }

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

Options :
Answer: D

Question 4

Given the code fragment:

1Z0-808
Which option represents the state of the num array after successful completion of the outer loop?

Options :
Answer: B

Question 5

Given the code fragment:

1Z0-808
What is the result?

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.