Friday, 29 November 2013

Object Oriented Programming CS304 vu current Assignment No. 02 Fall December 2013

Assignment No. 02  (Graded) SEMESTER Fall 2013 CS304- Object Oriented Programming    Total Marks: 20 Due Date: 05/12/2013
Instructions
Please read the following instructions carefully before solving & submitting assignment:
It should be clear that your assignment will not get any credit (zero marks) if:
  • The assignment is submitted after due date.
  • The submitted assignment is other than .cpp file.
  • The submitted assignment does NOT open or file is corrupted.
  • The assignment is copied (from other student or ditto copy from handouts or internet).
Uploading instructions

  • For clarity and simplicity, you are required to Upload/Submit only .CPP file
Objective
The objective of this assignment is:

  • To give you the idea of practical implementation of some concepts like, definition of classes, Data members, member functions, Constructors, Destructors etc.
Marks: 20 


Problem Statement:

In continuation of the assignment no. 1, consider the following class diagram (a part from Assignment no. 1 solution), detailed description of the diagram is given in the table
Table:

Class Name
Attribute Name
Attribute Data Type
Behavior (Functions)
Admission
Term
Character string
-Default Constructor()
-Open()
-Close()
Year
Integer
FeeStructure
DegreeProgram
Character string
-Default Constructor()
-DisplayFees()
RegistrationFee
Integer
AdmissionFee
Integer
SecurityFee
integer
Schedule
Description
Character string
-DisplaySchedule()
CandidateList
StdName
Character string
-Default Constructor()
-DisplayList()
StdRollNo
Character string
TotalStudents
Integer
AcademicProgram
DegreeTitle
Character string

-CalculateCGPA()
-Destructor()
 
Duration
 
Integer
Masters
Specialization
Character string
-Default Constructor()




Bachelors
Specialization
Character string
-Default Constructor()




Diploma
DiplomaType
Character string
-Default Constructor()

You are required to map (implement/Code) this class diagram in C++.
Make sure that your solution must contain ONLY classes’ definitions given in the diagram, definitions of all attributes and proper declaration and definitions of member functions including constructors that are given in the above table.
Detail of some Member Functions:
  1. Open() and Close() function open and close admission respectively.
  2. DisplayFee() print the fee structure of one or all study programs.
  3. DisplaySchedule() print the admission schedule.
  4. DisplayList() print the list of admitted candidates.
  5. CalculateCGPA() calculate the CGPA of students for a particular study program.
Note:
  1. The body of all member functions and destructors should be empty, while the constructors should have code which initializes the objects.
  2. Do not implement the aggregation.

Idea Solution :

Capture002