Tuesday 7 May 2013

CS304 Assignment No. 02 Solution Spring 2013

Assignment No. 02 
SEMESTER Spring 2013
CS304- Object Oriente
d Programming
Total Marks: 20
Due Date: 07/05/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, Constrictors, Destructors etc.


For any query about the assignment, contact atCS304@vu.edu.pk
GOOD LUCK
Marks: 20
Consider the following class diagram, detailed description of the diagram is given in the table.
Class Name
Attribute Name
Attribute Data Type
Behavior (Functions)
Virtual Ballot Paper NoOfsignsInteger-Default Constructor()
-DisplaySign()
-Destructor()
NameOfVotingCategory Character String
Candidate NameCharacter String-Default Constructor()
-Parameterized constructor (...)
-Destructor()

Address Character String
CandidateTypeCharacter String
NoVotesInteger
SignNameCharacter String -Select()
-Destructor()
Constituency NoOfCandidatesInteger-Default Constructor()
-Parameterized constructor (...)
-GetConstituencyNo()
-Destructor()
NoOfVotersInteger
ConstituencyNoInteger
Result -CountVotes()
-AnnounceResult()
-Destructor()
You are required to map (implement) this class diagram in C++.
Make sure that your [COLOR=#0000FF !important]solution[/COLOR] 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.

Details of Member functions:

DisplaySign(): This function will display the sign names on a ballot paper.

Select() : This function will select a sign.

GetConstituencyNo(): This function will return constituency number.

CountVotes(): This function will count the votes.

AnnounceResult(): This function will display result.

Note: The body of all member functions and destructors should be empty, while the constructors should have code which initializes the objects.

Lectures Covered: This assignment covers Lecture #07-10
Deadline: Your assignment must be uploaded/submitted at or before. May 07, 2013

Solution


#include<iostream.h>
#include<stdlib.h>
#include<conio.h>
#include<string.h>
class Virtual_Ballot_Paper
{
private:
int NoOfsigns;
char *NameOfVotingCategory;
public:
Virtual_Ballot_Paper()
{
cout"Virtual_Ballot_Paper\n";
NoOfsigns = 0;
NameOfVotingCategory = NULL;
}

void DisplaySign();
~Virtual_Ballot_Paper()
{
cout" dis Virtual_Ballot_Paper\n";
}


};
class Candidate : public Virtual_Ballot_Paper
{
private:
char* Name;
char* Address;
char* CandidateType;
int NoVotes;
public:
Candidate()
{
Name = Address = CandidateType = NULL;
NoVotes = 0;
cout"Candidate\n";
}
Candidate(char *n ,char *a ,char *c ,int x)
{
Name = n;
Address = a;
CandidateType = c;
NoVotes = x;

}
~Candidate(){
cout"Dis Candidate\n";}

};

class Sign : public Candidate 
{
private:
char *Name;
public: 
void Select(){cout"I am ali khan";};
~Sign()
{
cout"dis Sign\n";
}
};

class Constituency : public Candidate
{
private:
int NoOfCandidates;
int NoOfVoters;
int ConstituencyNo;
public:
Constituency()
{
NoOfCandidates = 0;
NoOfVoters = 0;
ConstituencyNo = 0;
cout"Constituency\n";
}
Constituency(int n ,int x ,int c)
{
NoOfCandidates = n;
NoOfVoters = x;
ConstituencyNo = c;
}
int GetConstituencyNo();
~Constituency(){ cout" dis Constituency\n";}
};
class Result : public Virtual_Ballot_Paper
{
public:
int CountVotes();
int AnnounceResult();
~Result(){cout"Dis Result\n";}
};
--
Need Your Comments.....!

-- 

For University of Pakistan Study Material Sharing, Discussion, etc, Come and join us at http://4e542a34.linkbucks.com
You received this message because you are subscribed to the Google
Groups "Study" group.
To post to this group, send email to http://ca13054d.tinylinks.co
For more options, visit this group at
http://004bbb67.any.gs

No comments:

Post a Comment

Note: only a member of this blog may post a comment.