PhoneEntry[] phoneBook = new PhoneEntry[ 5 ] ; A good answer might be:phoneBook is an array of 5 references to phoneEntry objects. But so far there are no phoneEntry objects and every slot of phoneBook is null. | ||
Skeleton ApplicationYes, you already knew that. But it is easy to forget. Here is a skeleton of the application:
The class PhoneBook contains the data and a search method. Its search method will return a reference to the PhoneEntry that matches the name being sought. | ||
QUESTION 18:What will the search method return if no matching PhoneEntry is found? Click Here after you have answered the question |