EXPERTY DESIGNED 1Z0-809 PRACTICE TEST

Oracle 1Z0-809 Exam Questions
Total Questions: 469
Java SE 8 Programmer II
Updated On: Nov 04, 2025
Page : 1-47
Question 1

The last statement inside main(String []) method, increments value of i, which means it is not effectively final and hence compilation error.

//Test.java

package com.udayan.ocp;

 

class Player {

    String name;

    int age;

    Player() {

        this.name = "Virat";

        this.age = 29;

    }

    

    public int hashCode() {

        return 100;

    }

}

 

public class Test {

    public static void main(String[] args) {

        System.out.println(new Player());

    }

}

Hexadecimal representation of 100 is 64.

Which of the following option is correct?

Options :
Answer: B

Question 2

Given code of Test.java file: 

1. package com.udayan.ocp;

2.  

3. import java.util.Arrays;

4. import java.util.Comparator;

5. import java.util.List;

6.  

7. class Person {

8.     private String firstName;

9.     private String lastName;

10.  

11.     public Person(String firstName, String lastName) {

12.         this.firstName = firstName;

13.         this.lastName = lastName;

14.     }

15.  

16.     public String getFirstName() {

17.         return firstName;

18.     }

19.  

20.     public String getLastName() {

21.         return lastName;

22.     }

23.  

24.     public String toString() {

25.         return "{" + firstName + ", " + lastName + "}";

26.     }

27. }

28.  

29. public class Test {

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

31.         List list = Arrays.asList(

32.                 new Person("Tom", "Riddle"),

33.                 new Person("Tom", "Hanks"),

34.                 new Person("Yusuf", "Pathan"));

35.         list.stream().sorted(Comparator.comparing(Person::getFirstName).reversed()

36.                 .thenComparing(Person::getLastName)).forEach(System.out::println);

37.     }

38. }

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

Options :
Answer: A

Question 3

Given the code fragment:
Stream<Path> files = Files.list(Paths.get(System.getProperty(“user.home”)));
 files.forEach (fName -> { //line n1
 try {
 Path aPath = fName.toAbsolutePath(); //line n2
 System.out.println(fName + “:”
 + Files.readAttributes(aPath,
Basic.File.Attributes.class).creationTime
());
 } catch (IOException ex) {
 ex.printStackTrace();
 });
What is the result?

Options :
Answer: C

Question 4

Given the code fragments:
class MyThread implements Runnable {
 private static AtomicInteger count = new AtomicInteger (0);
 public void run () {
 int x = count.incrementAndGet();
 System.out.print (x+” “);
 }
}
and
Thread thread1 = new Thread(new MyThread());
Thread thread2 = new Thread(new MyThread());
Thread thread3 = new Thread(new MyThread());
Thread [] ta = {thread1, thread2, thread3};
for (int x= 0; x < 3; x++) {
 ta[x].start();
}
Which statement is true?

Options :
Answer: A

Question 5

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?

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.