1z1-808 Exam Question 91

Given the code fragment:

And given the requirements:
If the value of the qty variable is greater than or equal to 90, discount = 0.5 If the value of the qty variable is between 80 and 90, discount = 0.2 Which two code fragments can be independently placed at line n1 to meet the requirements? (Choose two.)
  • 1z1-808 Exam Question 92

    Given the code fragment:

    And given the requirements:
    If the value of the qty variable is greater than or equal to 90, discount = 0.5 If the value of the qty variable is between 80 and 90, discount = 0.2 Which two code fragments can be independently placed at line n1 to meet the requirements? (Choose two.)
  • 1z1-808 Exam Question 93

    Given:
    public class TestField { int x;
    int y;
    public void doStuff(int x, int y) {
    this.x = x;
    y =this.y;
    }
    public void display() {
    System.out.print(x + " " + y + " : ");
    }
    public static void main(String[] args) {
    TestField m1 = new TestField();
    m1.x = 100;
    m1.y = 200;
    TestField m2 = new TestField();
    m2.doStuff(m1.x, m1.y);
    m1.display();
    m2.display();
    }
    }
    What is the result?
  • 1z1-808 Exam Question 94

    Given:

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

    Given:

    What is the result?