Free Oracle 1Z0-808 Exam Questions

Try our Free Demo Practice Tests for Comprehensive 1Z0-808 Exam Preparation

  • Oracle 1Z0-808 Exam Questions
  • Provided By: Oracle
  • Exam: Java SE 8 Programmer I
  • Certification: Oracle Certified Associate
  • Total Questions: 608
  • Updated On: Mar 26, 2025
  • Rated: 4.9 |
  • Online Users: 1216
Page No. 1 of 122
Add To Cart
  • Question 1
    • Consider below code of Test.java file:

      1. package com.sampleproject.oca;

      2.  

      3. public class Test {

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

      5.         String [][] arr = { {"%", "$$"}, {"***", "@@@@", "#####"}};

      6.         for(String [] str : arr) {

      7.             for(String s : str) {

      8.                 System.out.println(s);

      9.                 if(s.length() == 4) //Line n1

      10.                     break; //Line n2

      11.             }

      12.             break; //Line n3

      13.         }

      14.     }

      15. }

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


      Answer: E
  • Question 2
    • What will be the result of compiling and executing Test class?

      1. package com.udayan.oca;

      2.  

      3. public class Test {

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

      5.          int x = 1;

      6.          while(checkAndIncrement(x)) {

      7.              System.out.println(x);

      8.          }

      9.      }

      10.  

      11.      private static boolean checkAndIncrement(int x) {

      12.          if(x < 5) {

      13.              x++;

      14.              return true;

      15.          } else {

      16.              return false;

      17.          }

      18.      }

      19. }


      Answer: C
  • Question 3
    • What will be the result of compiling and executing Test class?

      1. //Test.java

      2. package com.udayan.oca;

      3.  

      4. class Point {

      5.     static int x;

      6.     private int y;

      7.     

      8.     public String toString() {

      9.         return "Point(" + x + ", " + y + ")";

      10.     }

      11. }

      12.  

      13. public class Test {

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

      15.         Point p1 = new Point();

      16.         p1.x = 100;

      17.         p1.y = 200;

      18.         

      19.         Point p2 = new Point();

      20.         p2.x = 100;

      21.         p2.y = 200;

      22.         

      23.         System.out.println(p1);

      24.     }

      25. }


      Answer: G
  • Question 4
    • Given code of Test.java file:

      1. package com.sampleproject.oca;

      2.  

      3. interface Blogger {

      4.     default void blog() throws Exception {

      5.         System.out.println("GENERIC");

      6.     }

      7. }

      8.  

      9. class TravelBlogger implements Blogger {

      10.     public void blog() {

      11.         System.out.println("TRAVEL");

      12.     }

      13. }

      14.  

      15. public class Test {

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

      17.         Blogger blogger = new TravelBlogger(); //Line n1

      18.         ((TravelBlogger)blogger).blog(); //Line n2

      19.     }

      20. }

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


      Answer: B
  • Question 5
    • Which two statements are true? (Choose two.)

      Answer: A,B
PAGE: 1 - 122
Add To Cart

© Copyrights Dumpscity 2025. All Rights Reserved

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