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
Get step-by-step solutions from verified subject matter experts
