Free Practice Oracle 1Z0-809 Exam Questions 2025

Stay ahead with 100% Free Java SE 8 Programmer II 1Z0-809 Dumps Practice Questions

Page:    1 / 94      
Total 469 Questions | Updated On: Mar 25, 2025
Add To Cart
Question 1

Given:
public class Counter {
 public static void main (String[ ] args) {
 int a = 10;
 int b = -1;
 assert (b >=1) : “Invalid Denominator”;
 int с = a / b;
 System.out.println (c);
 }
}
What is the result of running the code with the –da option?


Answer: A
Question 2

Given code of Test.java file: 

1. package com.udayan.ocp;

2.  

3. import java.util.ArrayDeque;

4. import java.util.Deque;

5.  

6. public class Test {

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

8.         Deque deque = new ArrayDeque<>();

9.         deque.push(new Boolean("abc"));

10.         deque.push(new Boolean("tRuE"));

11.         deque.push(new Boolean("FALSE"));

12.         deque.push(true);

13.         System.out.println(deque.pop() + ":" + deque.peek() + ":" + deque.size());

14.     }

15. }

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


Answer: A
Question 3

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

1. package com.udayan.ocp;

2.  

3. class X {

4.     class Y {

5.         private void m() {

6.             System.out.println("INNER");

7.         }

8.     }

9.     

10.     public void invokeInner() {

11.         Y obj = new Y(); //Line 9

12.         obj.m(); //Line 10

13.     }

14. }

15.  

16. public class Test {

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

18.         new X().invokeInner();

19.     }

20. }


Answer: C
Question 4

Given code of Test.java file: 

1. package com.udayan.ocp;

2.  

3. import java.util.Arrays;

4. import java.util.List;

5. import java.util.function.Predicate;

6.  

7. public class Test {

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

9.         List list = Arrays.asList(-80, 100, -40, 25, 200);

10.         Predicate predicate = num -> {

11.             int ctr = 1;

12.             boolean result = num > 0;

13.             System.out.print(ctr++ + ".");

14.             return result;

15.         };

16.         

17.         list.stream().filter(predicate).findFirst();

18.     }

19. }

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


Answer: D
Question 5

You want to create a singleton class by using the Singleton design pattern. Which two statements enforce the singleton nature of the design? (Choose two.)


Answer: A,B
Page:    1 / 94      
Total 469 Questions | Updated On: Mar 25, 2025
Add To Cart

© Copyrights TheExamsLab 2025. All Rights Reserved

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