Assignment:

In Assignment No.1 we developed Object Oriented Model for three modules of Learning Management System now you have to give its practical prototype in c++ mean you have to the solution of your first assignment and have to implement it in the form of classes in c++ also note that you don’t have to give actual implementation in c++ but simple stereotype (sketch) in the form of c++ code mentioning class names their parameters and functions with access specifiers you also have to show the relationship between classes in the form of inheritance mentioning the name of class/classes from which they have been derived in proper c++ syntax.


For example a part of your code may look like,

class Student{
char name[50];
char id[10];

public:
void TakeClass();

}

class GraduateStudent : public Student
{

Attributes and behavior of graduate student…..

}


You will write such code for your learning management system.

Recommended Answers

All 2 Replies

You will probably get better help in a software dev forum.

No, they really won't, because they just posted their homework assignment without demonstrating any effort whatsoever - which runs afoul of the announcement in all of the dev forums: http://www.daniweb.com/forums/announcement8-2.html

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.