EXPERTY DESIGNED 1Z0-808 PRACTICE TEST

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

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);

     }

}

Options :
Answer: A

Question 2

Which of the following is not a valid array declaration?

Options :
Answer: A

Question 3

Given the code fragments:

1Z0-808
And: 
1Z0-808
Which statement is true?

Options :
Answer: C

Question 4

Below is the code of Test.java file:

1. package com.udayan.oca;

2.  

3. import java.util.ArrayList;

4. import java.util.List;

5.  

6. public class Test {

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

8.          List list = new ArrayList();

9.  

10.          list.add(27);

11.          list.add(27);

12.  

13.          list.add(new Integer(27));

14.          list.add(new Integer(27));

15.  

16.          System.out.println(list.get(0) == list.get(1));

17.          System.out.println(list.get(2) == list.get(3));

18.      }

19. }

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

Options :
Answer: C

Question 5

Which of the following is a checked Exception?

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.