Free Oracle 1Z0-808 Exam Questions

Become Oracle Certified with updated 1Z0-808 exam questions and correct answers

Page:    1 / 122      
Total 608 Questions | Updated On: Oct 29, 2025
Add To Cart
Question 1

Which two statements are true? (Choose two.)


Answer: A,B
Question 2

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

package com.udayan.oca;

 

import java.util.ArrayList;

import java.util.List;

 

public class Test {

     public static void main(String[] args) {

         List list = new ArrayList<>();

         list.add(100);

         list.add(7);

         list.add(50);

         list.add(17);

         list.add(10);

         list.add(5);

 

         list.removeIf(a -> a % 10 == 0);

 

         System.out.println(list);

     }

}


Answer: A
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?


Answer: D
Question 4

Given this code for a Planet object:

HPE6-A70
What is the output?


Answer: C
Question 5

Given code of Test.java file:

1. package com.sampleproject.oca;

2.  

3. abstract class Animal {

4.     abstract void jump() throws RuntimeException;

5. }

6.  

7. class Deer extends Animal {

8.     void jump() { //Line n1

9.         System.out.println("DEER JUMPS");

10.     }

11.  

12.     void jump(int i) {

13.         System.out.println("DEER JUMPS TO " + i + " FEET");

14.     }

15. }

16.  

17. public class Test {

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

19.         Animal animal = new Deer();

20.         ((Deer)animal).jump(); //Line n2

21.         ((Deer)animal).jump(5); //Line n3

22.     }

23. }

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


Answer: A
Page:    1 / 122      
Total 608 Questions | Updated On: Oct 29, 2025
Add To Cart

© Copyrights DumpsCertify 2025. All Rights Reserved

We use cookies to ensure your best experience. So we hope you are happy to receive all cookies on the DumpsCertify.