English

Give an example of instance variables. - Computer Applications

Advertisements
Advertisements

Question

Give an example of instance variables.

Code Writing

Solution

class Cuboid {
    private double height;
    private double width;
    private double depth;
    private double volume;

    public void input(int h, int w, int d) {
        height = h;
        width = w;
        depth = d;
    }

    public void computeVolume() {
        volume = height * width * depth;
        System.out.println("Volume = " + volume);
    }
}

Height, width, depth, and volume are instance variables.

shaalaa.com
  Is there an error in this question or solution?
Chapter 6: Class as the Basis of all Computation (Objects and Classes) - EXERCISES [Page 384]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 6 Class as the Basis of all Computation (Objects and Classes)
EXERCISES | Q IV. 8. (ii) | Page 384
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×