1z0-808 Exam Question 16

Given the following array: Which two code fragments, independently, print each element in this array?

  • 1z0-808 Exam Question 17

    fragment:

    Which two modifications should you make so that the code compiles successfully?
  • 1z0-808 Exam Question 18

    What is the name of the Java concept that uses access modifiers to protect variables and hide them within a class?
  • 1z0-808 Exam Question 19

    Given:

    What is the result?
  • 1z0-808 Exam Question 20

    Given:
    class MarksOutOfBoundsException extends IndexOutOfBoundsException { }
    public class GradingProcess {
    void verify(int marks) throws IndexOutOfBoundsException {
    if (marks > 100) {
    throw new MarksOutOfBoundsException();
    }
    if (marks > 50) {
    System.out.print("Pass");
    } else {
    System.out.print("Fail");
    }
    }
    public static void main(String[] args) {
    int marks = Integer.parseInt(args[2]);
    try {
    new GradingProcess().verify(marks));
    } catch(Exception e) {
    System.out.print(e.getClass());
    }
    }
    }
    And the command line invocation:
    Java grading process 89 50 104
    What is the result?