Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Dokument2 - Word Suchen Entwurf Layout Referenzen Sendungen berprfen Ansicht Hilfe Bildformat 1. Define an abstract base class for an offered article with name Artiole.

image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
Dokument2 - Word Suchen Entwurf Layout Referenzen Sendungen berprfen Ansicht Hilfe Bildformat 1. Define an abstract base class for an offered article with name Artiole. This class shall have following members: a private string attribute with name model storing the article model name. two private real valued attributes with names netprice for the net price and taxRate storing the tax value in percent of the article. a public constructor with three parameters to initialise the attributes of an object, the tax rate shall be a default parameter with 19 %. a virtual public destructor producing an output "-Article ()" at its call and the article model name (see examples below). a public method with name set model assigning a string parameter to the model name attribute. a public method with name set netPrice assigning the double parameter to the net price attribute. a public method with name get model without parameters returning the model name as function value. a public method with name get net Price without parameters returning the net price as function value. a public method with name get grossPrice without parameters returning the gross price (gross price = net price + tax) as function value. a pure virtual public method with name print without parameter or return value. 2. Define a class with name Aacessory derived from abstract class Article. This class shall have following members: a private Boolean attribute with name original for an original accessory, a public constructor with three parameters for the article name, the net price and whether it is an original accessory with true as default parameter. The tax rate shall be automatically initialised by the default parameter of class constructor Article a virtual public destructor producing an output "-Aconssory ()" at its call (see examples at the bottom). a virtual publiC method with name print without parameters writing the article name and " (original accessory)", if it is an original one (see examples at the bottom). 3) Define a C++11 enumeration class with name operatingSystem and enumeration values unknown, android, ios, macos, linux, proprietary, unix and windows. Define an overloaded output operator

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions