Question 81

Examine the given definitions:

and the code fragment:

Which statement is true about the implementation of Object-Oriented Programming concepts in the given code?
  • Question 82

    Given the code fragment:

    What is the result?
  • Question 83

    You are asked to develop a program for a shopping application, and you are given the following information:
    The application must contain the classes Toy, EduToy, and ConsToy. The Toy class is the superclass

    of the other two classes.
    The int calculatePrice (Toy t) method calculates the price of a toy.

    The void printToy (Toy t) method prints the details of a toy.

    Which definition of the Toy class adds a valid layer of abstraction to the class hierarchy?
  • Question 84

    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?
  • Question 85

    Given the code fragment:

    What is the result if the integer aVar is 9?