1z1-808 Exam Question 66

Given:
  • 1z1-808 Exam Question 67

    Given these classes:

    And given this main method:

    Which two options compile when placed at line n1 of the main method? (Choose two.)
  • 1z1-808 Exam Question 68

    Given:

    And given the code fragment:

    What is the result?
  • 1z1-808 Exam Question 69

    Given the code fragment
    int var1 = -5;
    int var2 = var1--;
    int var3 = 0;
    if (var2 < 0) {
    var3 = var2++;
    } else {
    var3 = --var2;
    }
    System.out.println(var3);
    What is the result?
  • 1z1-808 Exam Question 70

    Given the code fragment:

    Which code fragment, when inserted at line n1, enables the App class to print Equal?