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];
System.out.println( bunch.length )
A. null
B. 0
C. 2
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
