Question: You have the following class: class CRectangle { public CRectangle() { System.out.println(CRectangle called); } public CRectangle (int w,int h); { System.out.println(CRectangle(int w, int h) called);

You have the following class:

class CRectangle { public CRectangle() { System.out.println("CRectangle called"); } public CRectangle (int w,int h); { System.out.println("CRectangle(int w, int h) called"); } public int area () { return (width*height); } } 

Which of these CRectangle methods is activated in the following Main method?

public class TestCRectangle { public static void main(String[] args) { CRectangle rectc = new CRectangle(); } }

a) int area () {return (width*height);}

b) CRectangle (int w,int h);

c) CRectangle();

a, b or c?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!