Exam Details

  • Exam Code
    :1Z0-808
  • Exam Name
    :Java SE 8 Programmer I
  • Certification
    :Oracle Certifications
  • Vendor
    :Oracle
  • Total Questions
    :385 Q&As
  • Last Updated
    :Mar 26, 2025

Oracle Oracle Certifications 1Z0-808 Questions & Answers

  • Question 361:

    Given the code fragment:

    public class Test {

    public static void main(String[] args) {

    boolean isChecked = false;

    int arry[] = {1,3,5,7,8,9};

    int index = arry.length;

    while ( ) {

    if (arry[index-1] % 2 ==0) {

    isChecked = true;

    }

    }

    System.out.print(arry(index]+", "+isChecked));

    }

    }

    Which set of changes enable the code to print 1, true?

    A. Replacing with index > 0 and replacing with index--;

    B. Replacing with index > 0 and replacing with --index;

    C. Replacing with index > 5 and replacing with --index ;

    D. Replacing with index and replacing with --index ;

  • Question 362:

    A method is declared to take three arguments. A program calls this method and passes only two arguments. What is the results?

    A. Compilation fails.

    B. The third argument is given the value null.

    C. The third argument is given the value void.

    D. The third argument is given the value zero.

    E. The third argument is given the appropriate falsy value for its declared type. F) An exception occurs when the method attempts to access the third argument.

  • Question 363:

    Which two actions will improve the encapsulation of a class?

    A. Changing the access modifier of a field from public to private

    B. Removing the public modifier from a class declaration

    C. Changing the return type of a method to void

    D. Returning a copy of the contents of an array or ArrayList instead of a direct reference

  • Question 364:

    Given:

    public class ComputeSum {

    public int x;

    public int y;

    public int sum;

    public ComputeSum (int nx, int ny) {

    x = nx; y =ny;

    updateSum();

    }

    public void setX(int nx) { x = nx; updateSum();}

    public void setY(int ny) { x = ny; updateSum();}

    void updateSum() { sum = x + y;}

    }

    This class needs to protect an invariant on the sum field.

    Which three members must have the private access modifier to ensure that this invariant is maintained?

    A. The x field

    B. The y field

    C. The sum field

    D. The ComputerSum ( ) constructor

    E. The setX ( ) method

    F. The setY ( ) method

  • Question 365:

    Given the following array:

    Which two code fragments, independently, print each element in this array?

    A. Option A

    B. Option B

    C. Option C

    D. Option D

    E. Option E

    F. Option F

  • Question 366:

    Which statement best describes encapsulation?

    A. Encapsulation ensures that classes can be designed so that only certain fields and methods of an object are accessible from other objects.

    B. Encapsulation ensures that classes can be designed so that their methods are inheritable.

    C. Encapsulation ensures that classes can be designed with some fields and methods declared as abstract.

    D. Encapsulation ensures that classes can be designed so that if a method has an argument MyType x,

    any subclass of MyType can be passed to that method.

  • Question 367:

    Given:

    The class is poorly encapsulated. You need to change the circle class to compute and return the area instead.

    Which two modifications are necessary to ensure that the class is being properly encapsulated?

    A. Remove the area field.

    B. Change the getArea( ) method as follows: public double getArea ( ) { return Match.PI * radius * radius; }

    C. Add the following method: public double getArea ( ) {area = Match.PI * radius * radius; }

    D. Change the cacess modifier of the SerRadius ( ) method to be protected.

  • Question 368:

    Given the code fragment:

    What is the result?

    A. 10 8 6 4 2 0

    B. 10 8 6 4 2

    C. AnArithmeticException is thrown at runtime

    D. The program goes into an infinite loop outputting: 10 8 6 4 2 0. . .

    E. Compilation fails

  • Question 369:

    Given:

    And the code fragment:

    And the code fragment:

    Which code fragment, when inserted at line 14, enables the code to print Mike Found?

    A. int f = ps.indexOf {new patient ("Mike")};

    B. int f = ps.indexOf (patient("Mike"));

    C. patient p = new Patient ("Mike"); int f = pas.indexOf(P)

    D. int f = ps.indexOf(p2);

  • Question 370:

    Given:

    Which code fragment should you use at line n1 to instantiate the dvd object successfully?

    A. Option A

    B. Option B

    C. Option C

    D. Option D

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Oracle exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your 1Z0-808 exam preparations and Oracle certification application, do not hesitate to visit our Vcedump.com to find your solutions here.