Thursday, 11 May 2017

MCA Projects

We provide great quality Project Synopsis / Project Reports as per student requirements.

Best quality projects & assignments at less price. Mail your requirement at
Call us at 9815333456.

______________________________________________________________________________






                                                                                                                                         

#     Introduction

#     Class Hierarchy

#    C++ coding

#    Output

#    Future scope and enhancement







Right Arrow: INTRODUCTION 


                                                                                

My program on Student Management System has been designed  for maintaining  student records. There are following section in the program :
1. Record entry section:  In this section the datas of the student has been entered and saved.
2. Searching record section: In this section the record of the following student has been searched by entering the rollno or by name.
3. Display section: In this section the record of the student  has been displayed at a glance.
4.  Modify section: In this section if any detail of the particular student has been entered wrong , that has been corrected.
5. Delete record: In this section the record of the student has been deleted permanentely.
              The framing of the program has been designed using  ‘Switchcase’ and some graphic functions like textcolor(color),textbackground(color),textcolor(BLINK)  and using gotoxy( row, column) ;



Right Arrow: Class hierarchy 




                                                                          
The only main  class ‘student’ has been declared having following data member and function :
Private data members are  name(for entering Student name),rollno(for student rollno),admin_no(for student admission no),dd(for day date of student date of birth),mm(for monthof student date of birth),yy(for the year of student date of birth),fname(father’s name of student),mname(for mother name of student).
Public data members and function : ‘void getdata()’ for inputing the details of the student(like name,rollno,date of birth) . ‘void putdata’ for displaying the datas of the student,’void modifydata()’for editing the details of the student.The record of the student can be searched and deleted but function has been declared for it in the class,direct coding has been done in the ‘main()’.
Other information about variable has been written in the non-compiled statement (in source code ).





Right Arrow: C++ coding 



                                                                
#include<fstream.h>
#include<conio.h>
#include<process.h>
#include<stdio.h>
#include<string.h>
class student
{
char fname[15],mname[15];     //father name & mother name
int rollno,admin_no,dd,mm,yy;    //roll number,Admission no, date,Month,Year
public:
char name[15];
void getdata();               //function for input data
void putdata();
void modifydata();           //Function to edit data
void display();              //Function to display data
int get_roll()            //function return rollno
{ return rollno; }
}  s1;
void student::getdata()
{ clrscr();
gotoxy(10,2);textcolor(0);textbackground(10);
We provide great quality Project Synopsis / Project Reports as per student requirements.

Best quality projects & assignments at less price. Mail your requirement at
Call us at 9815333456.



No comments:

Post a Comment