Question

In: Computer Science

Describe how you would develop object-oriented features of Java for the Quiz program developed in the...

Describe how you would develop object-oriented features of Java for the Quiz program developed in the Programming Assignments. In particular, describe how the program could use each of the following: class variables, instance variables, inheritance, polymorphism, abstract classes, "this", "super", interfaces, and event listeners.

Solutions

Expert Solution

Answer : Given data

* I have used following for the solution:

  1. Calculator is a class:
  2. which is abstact
  3. which is having abstract method
  4. which will define static methods for the polymorphism
  5. MainCall is another class:
  6. demonstarte super call from Calculator class
  7. which will extends the Calculator to demonstarte inheritance
  8. which will implement th InterfaceForDemo to demonstarte interface
  9. InterfaceForDemo is interface to demonstarte interafce
  10. contain a variable and method that are called by MainCall class
  11. EventListenerDemo is a class to demonstarte EventListener


Explanation:

CALCULATOR CLASS CODE:

package demo1;

abstract class Calculator {

     

  //Class variable

  static String batch = "CE";

  

  //Instance variable

  int z;

    

  //Abstract method definition

  //Abstract method has no body

  abstract void abc();

  

  //Defining a method in abstract classes

  void xyz()

  {

  System.out.println("\nI am demonstrating ABSTRACT class");

  }

  

  public Calculator() {

     System.out.println("I am demonstrating SUPER call from Calculator class");

  }

     

  public void addition(int x, int y) {

     System.out.println("\nHere z is demonstarting THIS");

     this.z = x + y;

     System.out.println("\nSum is: " +z);

  }

     

  public void Subtraction(int x, int y) {

  this.z = x - y;

  System.out.println("\nDifference is: "+z);

  }

    

  //The Product will demonstrate the POLYMORPHISM

  // Method with 2 int parameter

  static int Product(int a, int b)

  {

  return a * b;

  }

  

  // Method with the same name but 2 double parameter

  static double Product(double a, double b)

  {

  return a * b;

  }

}

MAINCALL CLASS CODE:

package demo1;

//Here MainCall is inheriting Calculator and implementing InterfaceForDemo

public class MainCall extends Calculator implements InterfaceForDemo {

  

  //Abstract Class

  void abc() {

  System.out.println("\nI am implementing from ABSTRACT class");

  }

    

  //Super constructor call

     public MainCall() {

        super();

        System.out.println("\nI am inside maincall class \n\nCalling SUPER constructor from Calculator class");

     }

     

    public void multiplication(int x, int y) {

     this.z = x * y;

     System.out.println("\nProduct is: "+z);

     }

    

     //Method from interface

     public void display() {

        System.out.println("\nI am a method from INTERFACE\n");

     }

     

     //Main method

     public static void main(String args[]) {

        

     int a = 20, b = 10;

     //Creating an object for the class

     MainCall demo = new MainCall();

     

     //Printing class variable

     System.out.println("\nI am demonstrating CLASS VARIABLE: " + batch);

     

     //Super is executing these function call from Calculator class

     demo.addition(a, b);

     demo.Subtraction(a, b);

     demo.multiplication(a, b);

     

     //Method from abstract class implemented

     demo.xyz();

     demo.abc();

     

     //Final string value and Method from Interface called here

     System.out.println("\nI am final string value from INTERFACE: "+ value);

     demo.display();

     

     //Polymorphism methods called here from Calculator class

     //These methods are called by using CLASS NAME

     System.out.println("I am demonstrating POLYMORPHISM: ");

     System.out.println(Calculator.Product(3, 4));

     System.out.println(Calculator.Product(3.0, 4.3));

       

     }

     

}

INTERFACEFORDEMO INTERAFCE CODE:

package demo1;

public interface InterfaceForDemo {

  

  //Variable and method declaration in Interface

  final String value = "I am final value in interface";

void display();

  

}

EVENTLISTENERDEMO CLASS CODE:

package demo1;

import java.awt.*;

import java.awt.event.*;

class EventListenerDemo extends Frame implements ActionListener{

     TextField textField;

     EventListenerDemo(){

     

     //create components

     textField=new TextField();

     textField.setBounds(60,50,170,20);

     

     Button b=new Button("Click here!!");

     b.setBounds(100,120,80,30);

     

     //register listener

     b.addActionListener(this);//passing current instance

     

     //add components and set size, layout and visibility

     add(b);add(textField);

     setSize(300,300);

     setLayout(null);

     setVisible(true);

  }

     

  public void actionPerformed(ActionEvent e){

     textField.setText("Got Event Listener ");

  }

  public static void main(String args[]){

     new EventListenerDemo();

  }

}

___________THE END_______________


Related Solutions

Describe how you would develop object-oriented features of Java for the Quiz program developed in the...
Describe how you would develop object-oriented features of Java for the Quiz program developed in the Programming Assignments. In particular, describe how the program could use each of the following: class variables, instance variables, inheritance, polymorphism, abstract classes, "this", "super", interfaces, and event listeners. Your Discussion should be at least 250 words in length, but not more than 750 words. Once you’ve completed your initial post, be sure to respond to the posts of at least 3 of your classmates.
Describe how you would develop object-oriented features of Java for the Quiz program developed in the...
Describe how you would develop object-oriented features of Java for the Quiz program developed in the Programming Assignments. In particular, describe how the program could use each of the following: class variables, instance variables, inheritance, polymorphism, abstract classes, "this", "super", interfaces, and event listeners.
The application uses Java Object-Oriented features for its implementation. Students select from a menu of courses...
The application uses Java Object-Oriented features for its implementation. Students select from a menu of courses for which they wish to register. The program then validates the user selection against the registration business rules. If the selection is valid, the program prints out a confirmation message. Otherwise, the program prints out the current list of registered classes along with total registered credit hours. The program terminates when the user does not want to register for classes any more. There are...
PHP You will be using the object oriented features of PHP to design a music album...
PHP You will be using the object oriented features of PHP to design a music album processing page. First you will build a form page called addAlbum.php. This form will contain text fields for album title, artist, publisher (Sony, BMI, etc.) and genre. Add two more fields of your choice. You will post this form to the file process.php. If all the fields have values, we will create a new Album object and print the details of the object. You...
PHP You will be using the object oriented features of PHP to design a music album...
PHP You will be using the object oriented features of PHP to design a music album processing page. First you will build a form page called addAlbum.php. This form will contain text fields for album title, artist, publisher (Sony, BMI, etc.) and genre. Add two more fields of your choice. You will post this form to the file process.php. If all the fields have values, we will create a new Album object and print the details of the object. You...
*OBJECT ORIENTED PROGRAMMING* *JAVA PROGRAMMING* Create a program that simulates a race between several vehicles. Details...
*OBJECT ORIENTED PROGRAMMING* *JAVA PROGRAMMING* Create a program that simulates a race between several vehicles. Details don't matter code must just have the following: Design and implement an inheritance hierarchy that includes Vehicle as an abstract superclass and several subclasses. Include a document containing a UML diagram describing your inheritance hierarchy. Include at least one interface that contains at least one method that implementing classes must implement. Include functionality to write the results of the race to a file; this...
This program should be done in python. This must use the principles of object oriented program....
This program should be done in python. This must use the principles of object oriented program. Create one or more classes to play Four-in-a-Row (also called Connect Four) with a user. It’s similar to tic-tac-toe but the board is of size 7×6 and discs fall straight through so the legal moves are more stringent than tic-tac-toe. The state of the board should be printed to the terminal after each legal move. You can represent the different colored discs as X’s...
In this program, you are modifying given code so that the class is object-oriented. 2. Write...
In this program, you are modifying given code so that the class is object-oriented. 2. Write a Java class called CityDistancesOO in a class file called CityDistancesOO.java.    3. Your class will still make use of two text files. a. The first text file contains the names of cities with the first line of the file specifying how many city names are contained within the file.    b. The second text file contains the distances between the cities in the...
Describe the types of hierarchy found in object-oriented systemdescriptions.
Describe the types of hierarchy found in object-oriented system descriptions.
Java language This is your first homework on objects and classes, and the basics of object-oriented...
Java language This is your first homework on objects and classes, and the basics of object-oriented programming. For each exercise, your task is to first write the class that defines the given object. Compile it and check it for syntax errors. Then write the “demo class” with the main program that creates and uses the object. a)You are planning to purchase a new motor boat for cool cruises on Porter’s Lake this summer, but you want to simulate it before...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT