This document outlines specifications for several classes:
1. The Student class with data members like admission number, name, subject scores, and methods to calculate total score and display data.
2. The Batsman class with data members like player code, name, stats, and a method to calculate batting average from runs and innings.
3. The Test class with data members like test code, description, number of candidates, and a method to calculate number of required centers based on candidates.
4. The Flight class with data members like number, destination, distance, fuel amount, and a method to calculate fuel based on distance.
5. The Book class with data members like book number,
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
9 views
Assignment On Oops
This document outlines specifications for several classes:
1. The Student class with data members like admission number, name, subject scores, and methods to calculate total score and display data.
2. The Batsman class with data members like player code, name, stats, and a method to calculate batting average from runs and innings.
3. The Test class with data members like test code, description, number of candidates, and a method to calculate number of required centers based on candidates.
4. The Flight class with data members like number, destination, distance, fuel amount, and a method to calculate fuel based on distance.
5. The Book class with data members like book number,
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2
1 Define a class student with the following specification
members of class student
admno integer sname String eng. math, science float total float ctotal() a function to calculate eng + math + science with float return type. a member function of class student Takedata() Function to accept values for admno, sname, eng, science and invoke ctotal() to calculate total. Showdata()Function to display all the data members on the screen.
2 Define a class batsman with the following specifications:
members: bcode number bname string innings, notout, runs integer type batavg it is calculated according to the formula – batavg =runs/(innings-notout) calcavg() Function to compute batavg members: readdata() Function toaccept value from bcode, name, innings, notout and invoke the function calcavg() displaydata() Function to display the data members on the screen.
3 Define a class TEST with the following description:
Members TestCode of type integer Description of type string NoCandidate of type integer CenterReqd (number of centers required) of type integer A member function CALCNTR() to calculate and return the number of centers as (NoCandidates/100+1) Members - function SCHEDULE() to allow user to enter values for TestCode, Description, NoCandidate& call function CALCNTR() to calculate the number of Centres - A function DISPTEST() to allow user to view the content of all the data members
4 Define a class in with following description:
Members A data member Flight number of type integer A data member Destination of type string A data member Distance of type float A data member Fuel of type float A member function CALFUEL() to calculate the value of Fuel as per the following criteria Distance Fuel <=1000 500 more than 1000 and <=2000 1100 more than 2000 2200 Members A function FEEDINFO() to allow the user to enter values for Flight Number, Destination, Distance & call function CALFUEL() to calculate the quantity of Fuel A function SHOWINFO() allows the user to view the content of all the data members
5 Define a class BOOK with the following specifications:
members of the class BOOK are BOOK NO integer type BOOK TITLE String PRICE float (price per copy) TOTAL_COST() function to calculate the total cost for N number of copies where N is passed to the function as an argument. members of the class BOOK are INPUT()function to read BOOK_NO. BOOKTITLE, PRICE PURCHASE()function to ask the user to input the number of copies to be purchased. It invokes TOTAL_COST() and prints the total cost to be paid by the user. Note: You are also required to give detailed function definitions.
6 Define a class REPORT with the following specification:
members : adno 4 digit admission number name String marks an array of 5 floating-point values average marks obtained GETAVG() a function to compute the average obtained in five subject members: READINFO() function to accept values for adno, name, marks. Invoke the function GETAVG() DISPLAYINFO()function to display all data members of a report on the screen. You should give function definitions.