English

Show with the help of an example, how the following base classes can be derived in class bill to fulfill the given requirement: - Computer Applications

Advertisements
Advertisements

Question

Show with the help of an example, how the following base classes can be derived in class bill to fulfill the given requirement: 

class Elect 
   {
      String n; 
      float units; 
      public void setvalue() 
   {
      n = "SOURABH" 
      units = 6879; 
   }
}

class Bill uses data members charge and a member function to calculate the bill at the rate of ₹ 3.25 per unit and displays the charge. Class Elect is inherited by class Bill by using private visibility. 

Code Writing

Solution

Class elect can be derived in class bill as shown below:

class bill extends elect {
    private double charge;
    public void calc() {
        charge = 3.25 * units;
        System.out.println("Charge = " + charge);
    }
}
shaalaa.com
  Is there an error in this question or solution?
Chapter 8: Encapsulation and Inheritance - EXERCISES [Page 446]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 8 Encapsulation and Inheritance
EXERCISES | Q V. 18. | Page 446
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×