Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Person and Customer Classes Design a class named Person with fields for holding a persons name, address, and telephone number. Write one or more constructors

Person and Customer Classes Design a class named Person with fields for holding a persons name, address, and telephone number. Write one or more constructors and the appropriate mutator and accessor methods for the classs fields. Next, design a class named Customer , which extends the Person class. The Customer class should have a field for a customer number and a boolean field indicating whether the cus-tomer wishes to be on a mailing list. Write one or more constructors and the appropriate mutator and accessor methods for the classs fields. Demonstrate an object of the Customer class in a simple program.

PreferredCustomer Class

A retail store has a preferred customer plan where customers can earn discounts on all their purchases. The amount of a customer's discount is determined by the amount of the customer's cumulative purchases in the store as follows:

* When a preferred customer spends $500, he or she gets a 5 percent discount on all future purchases.

* When a preferred customer spends $1,000, he or she gets a 6 percent discount in all future purchase.

* When a preferred customer spends $1,500, he or she gets a 7 percent discount in all future purchase.

* When a preferred customer spends $2,000 or more, he or she gets a 10 percent discount in all future purchase.

Design a class named PreferredCustomer, which extends the Customer class you created earlier. The PreferredCustomer class should have fields for the amount of the customer's purchases and the Customer's discount level. Write one or more constructors and the appropriate mutator and accessor methods for the class's fields. Demonstrate the class in a simple program.

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

Oracle Database Administration The Essential Reference

Authors: Brian Laskey, David Kreines

1st Edition

1565925165, 978-1565925168

Students also viewed these Databases questions

Question

5. Identify three characteristics of the dialectical approach.

Answered: 1 week ago