The Total solution for NCERT class 6-12
Define a classTourist in C + + with the following specification:Data Members• CNo – to store Cab No• CType – to store a character ‘A’, ‘B’, or ‘C’ as City Type• PerKM – to store per Kilo Meter charges• Distance – to store Distance travelled (in KM) Member Functions• A constructor function to initialize CType as ‘A’ and CNo as ‘0000’• A function CityCharges() to assign PerKM as per the following table:
CType
PerKM
A
20
B
18
C
15
• A functionRegisterCab() to allow administrator to enter the values for CNo and CType.Also, this function should call CityCharges() to assign PerKM charges.• A function Display() to allow user to enter the value of Distance and displayCNo, CType, PerKM, PerKM*Distance (as Amount) on screen.
Answer - 11 : -
Define a class Seminarwith the following specification:private membersSeminarld longTopic string of 20 charactersVenueLocation string of 20 charactersFee float
CalcFee() function tocalculate Fee depending on VenueLocation
VenueLocation
Fee
Outdoor
5000
Indoor Non-AC
6500
Indoor AC
7500
Public membersRegister() function to accept values for SeminarlD, Topic, VenueLocation andcall CalcFee() to calculate FeeViewSeminar() function to display all the data members on the screen
Answer - 12 : -
Answer - 13 : -
Answer - 14 : -
Answer - 15 : -
Answer - 16 : -
Answer - 17 : -
Answer - 18 : -
Answer - 19 : -
Answer - 20 : -
}; void Item : GetOffer () { if (Qty < =50) Offer = 0; else if (Qty <= 100) Offer = 5; //OR Offer = 0.05; else Offer = 10; //OR Offer = 0.1; }