Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

5 . Using classes, design an online address book to keep track of the names, addresses, phone numbers, and dates of birth of family members,

5. Using classes, design an online address book to keep track of the names,
addresses, phone numbers, and dates of birth of family members, close
friends, and certain business associates. Your program should be able to
handle a maximum of 500 entries.
a. Define a class addressType that can store a street address, city, state,
and ZIP code. Use the appropriate functions to print and store the
address. Also, use constructors to automatically initialize the member
variables.
b. Define a class extPersonType using the class personType, the class dateType, and the class addressType. Add a
member variable to this class to classify the person as a family member,
friend, or business associate. Also, add a member variable to store the
phone number. Add (or override) the functions to print and store the
appropriate information. Use constructors to automatically initialize the
member variables.
c. Define the class addressBookType using the previously defined
classes. An object of the type addressBookType should be able to process a maximum of 500 entries.
The program should perform the following operations:
I. Load the data into the address book from a disk.
II. Sort the address book by last name.
III. Search for a person by last name.
IV. Print the address, phone number, and date of birth (if it exists) of a given
person.
V. Print the names of the people whose birthdays are in a given month.
VI. Print the names of all the people between two last names.
VII. Depending on the users request, print the names of all family members,
friends, or business associates.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Statistical And Scientific Database Management International Working Conference Ssdbm Rome Italy June 21 23 1988 Proceedings Lncs 339

Authors: Maurizio Rafanelli ,John C. Klensin ,Per Svensson

1st Edition

354050575X, 978-3540505754

More Books

Students also viewed these Databases questions

Question

d. Present your teams conclusions to the class.

Answered: 1 week ago