Question: Consider the following class definitions. public class Cat { private String name: private int age; public Cat( String n, int a ) //implementation not shown

Consider the following class definitions.

public class Cat

{

private String name:

private int age;

public Cat( String n, int a )

//implementation not shown public

String getName()

//implementation not shown

public int getAge()

//implementation not shown

//other methods not shown

}

//client code in another class

Cat[] bunch = new Cat[5];

bunch[0] = new Cat("rocket", 8);

System.out.println( bunch[0].getAge() );

A. null

B.0

C.8

D.3

E.5

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!