Contact Manager V1 Java Unit Learned Manipulate Arrays Multiple Ways Know Create Search Ap Q43823507
My Contact Manager v1 (JAVA)
In this unit you learned to manipulate arrays in multiple ways.You should know how to create, search, append, modify, delete from,save, and load arrays. Demonstrate your understanding of arrays bycompleting this assignment.
Contact managers are very common on smartphones. Develop acontact manager that would be found on a typical smartphone thatstores at least Contact Name and Contact Phone Number.
The contact manager must:
define a Contact class with at least two String fields: name andnumber
include a menu with the options: view all entries, add entry,modify entry, delete entry, save book, load book and quit.
be modular (use methods to perform individual tasks)
use a 1D array of the Contact class to store up to 100contacts
include proper internal documentation.
Remember the My Friendslist assignment? You might be able to reusesome of those methods to speed up your progress!
Exceed the Expectations: Include and implement fields in theContact class for Address, Email, etc.
Expert Answer
Answer to My Contact Manager v1 (JAVA) In this unit you learned to manipulate arrays in multiple ways. You should know how to crea…
OR