Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

The user shouldbe able to addnew customerinformation o Your program should check

ID: 3608852 • Letter: T

Question

The user shouldbe able to addnew customerinformation

o Your program should check if this is anexisting customer using SSN:

If yes : Yourprogram should warn the user and do not add the newrecord.

If no : Yourprogram should add the new customer.

•delete customer information

o Your program should check if this is anexisting customer using SSN:

If no : Yourprogram should warn the user.

If yes : Yourprogram should delete the record.

•list customer information

Social SecurityNumber Phone Number

---------------------- ------------

12345678 2811234567

45675678 7133454567

•update customer information (i.e., phone numbernot SSN)

Tips:

1. For eachpart of the assignment, please try to follow object orientedprogramming practices

explained inthe lectures.

2. First,please determine which classes you should define for thisproblem.

3. Determinewhich functions you should define.

4. Design yourclasses. Explain why you defined those classes.

5. Please tryto make your code easy to read and understand. Please insertcomments to explain

yourcode.

6. Defineget/set functions and required constructors.

7. Use vectorclass object to create your database. Your vector object should bemember data, as

in thephonebook example.

Submission:

1) List ofclasses and explanation of your design.

2) Programcode

Explanation / Answer

x.x