SlideShare a Scribd company logo
:-Students progress
System
prepared by~
ROSHAN KUMAR BASTIA
12th ‘A’
Roll. No.:- 10
Kendriya Vidyalaya S.E.C.L,
Baikunthpur(497339),(C.G)
2015-2016
Computer Project
SUBMITTED IN THE PARTIAL FULFILLMENT OF THE
REQUIREMENT OF CBSE BOARD
Thisistocertifythatprojectworkentitled:
Student progress record SYSTEM
Hasbeen carriedout by
Studentsof classXII ‘A’
RoshanKumarBASTIA
Kendriya Vidyalaya,SECL,Baikunthpur(C.G)
Hehadsubmittedthisprojectduringthe
Academicyear2015-2016,
Towardspartial fulfilment of requirement
Of CBSE Board.
CERTIFICATE
Mr.R.K.Asanani Signature
(ComputerTeacher) [External]
ACKNOWLEDGMENT
I am extremely grateful to Mr. R.k.Asnani, Teacher
of Department of Computer Science for his able
guidance and useful suggestions, which helped me
in completing the project work, in time.
I would also like to thank all the teaching and
non-teaching staff of Computer Science department
who helped me directly or indirectly in the
completion of this project i.e. Student progress
System.
Finally, yet importantly, I would like to express my
heartfelt thanks to my beloved parents for their
blessings, my friends/classmates for their help and
wishes for the successful completion of this project.
RoshankumarBASTIA
KendriyavidyalayaSECL,
Baikunthpur(C.G)
This project has been prepared keeping in view the
requirements of Central Board Of Secondary Education,
New Delhi.
This project deals with every aspect of C++
functions and graphics. User defined functions have been
developed to make the program code as simpler and easier
as possible.
This project is aimed at providing a thorough base
and understanding in various latest trends and techniques
in C++.
PREFACE
INTRODUCTION
The project undertaken does the automation of the
STUDENT PROGRESS SYSTEM in the organization. It builds
on the performance, reliability, quality and ease of use. It also
includes a number of features that further establish it as a
better GUI application. STUDENT PROGRESS SYSTEM is a
system having Menu Driven User Interface. It contains
the vital data and marks scored in academics by
student. Administrator of the project can enter new student
record, display all/specific student record, he can modify and
delete student record. Administrator can enter new student
record, display all records, modify & delete student records.
The software is developed in C++. The software is
developed to reduce the workload for and provides
better service to the students.
The main reason of developing this software
is to reduce the workload and to provide ease of use to
accomplish the desired task.
We have chosen C++ because of its ease of use, versatility
& ability to implement OOP in its true sense. It offers a great
combination of in built scientific, mathematical, string, graphical
functions & scores of other user defined functions to accomplish any
given task. C++ emphasizes more on what has to be done rather than
how it has to be done. C++ allows the programmer to carry out
virtually any task, given the knowledge and skill of its application.
The OOP (Object Oriented Programming )approach is based
on certain concepts that help to attain its goal of overcoming the
drawbacks or shortcomings of conventional programming
approach.
These general concepts of OOP are: -
 DATA ABSTRACTION
C++ & OOP concepts
 DATA ENCAPSULATION
 MODULARITY
 INHERITANCE (HIERARCHY)
 POLYMORPHISM
MINIMUM: -
Intel 486 Processor
8 MB RAM
14” Monitor
Keyboard US layout
Printer
System Requirements
RECOMMENDED: -
Intel core i5 processor CPU @ 2.20GHz
8 GB RAM
14” Colour led Monitor
Keyboard US Layout
Mouse
Printer
//***********************************
****************************
// HEADER FILE USED
IN PROJECT
//***********************************
*****************************
#include<fstream.h>
#include<iomanip.h>
Source Code
#include<stdio.h>
#include<conio.h>
//***********************************
****************************
// CLASS USED IN
PROJECT
//***********************************
*****************************
class student
{
int rollno;
char name[50];
int p_marks, c_marks, m_marks,
e_marks, cs_marks;
float per;
char grade;
void calculate(); //function to
calculate grade
public:
void getdata(); //function to
accept data from user
void showdata(); //function to
show data on screen
void show_tabular();
int retrollno();
}; //class ends here
void student::calculate()
{
per=(p_marks+c_marks+m_marks+e_mar
ks+cs_marks)/5.0;
if(per>=60)
grade='A';
else if(per>=50)
grade='B';
else if(per>=33)
grade='C';
else
grade='F';
}
void student::getdata()
{
cout<<"nEnter The roll number of
student ";
cin>>rollno;
cout<<"nnEnter The Name of
student ";
gets(name);
cout<<"nEnter The marks in
physics out of 100 : ";
cin>>p_marks;
cout<<"nEnter The marks in
chemistry out of 100 : ";
cin>>c_marks;
cout<<"nEnter The marks in maths
out of 100 : ";
cin>>m_marks;
cout<<"nEnter The marks in
english out of 100 : ";
cin>>e_marks;
cout<<"nEnter The marks in
computer science out of 100 : ";
cin>>cs_marks;
calculate();
}
void student::showdata()
{
cout<<"nRoll number of student :
"<<rollno;
cout<<"nName of student :
"<<name;
cout<<"nMarks in Physics :
"<<p_marks;
cout<<"nMarks in Chemistry :
"<<c_marks;
cout<<"nMarks in Maths :
"<<m_marks;
cout<<"nMarks in English :
"<<e_marks;
cout<<"nMarks in Computer Science
: "<<cs_marks;
cout<<"nPercentage of student is
: "<<per;
cout<<"nGrade of student is :
"<<grade;
}
void student::show_tabular()
{
cout<<setw(3)<<setfill('
')<<rollno<<"t|";
cout<<setw(3)<<setfill('
')<<name<<"ttbbb|";
cout<<setw(3)<<setfill('
')<<p_marks<<" |";
cout<<setw(3)<<setfill('
')<<c_marks<<" |";
cout<<setw(3)<<setfill('
')<<m_marks<<" |";
cout<<setw(3)<<setfill('
')<<e_marks<<" |";
cout<<setw(3)<<setfill('
')<<cs_marks<<" |";
cout<<" "<<per<<" |";
cout<<" "<<grade<<" |";
cout<<endl;
}
int student::retrollno()
{
return rollno;
}
//***********************************
****************************
// function declaration
//***********************************
*****************************
void write_student(); //write the
record in binary file
void display_all(); //read all
records from binary file
void display_sp(int); //accept
rollno and read record from binary
file
void modify_student(int); //accept
rollno and update record of binary
file
void delete_student(int); //accept
rollno and delete selected records
from binary file
void class_result(); //display all
records in tabular format from binary
file
void result(); //display result menu
void intro(); //display welcome
screen
void entry_menu(); //display entry
menu on screen
void exit() ;
//***********************************
****************************
// THE MAIN FUNCTION OF PROGRAM
//***********************************
*****************************
void main()
{
char ch;
cout.setf(ios::fixed|ios::showpoin
t);
cout<<setprecision(2); // program
outputs decimal number to two decimal
places
clrscr();
intro();
do
{
clrscr();
cout<<"nnntMAIN MENU";
cout<<"nnt01. RESULT MENU";
cout<<"nnt02. ENTRY/EDIT
MENU";
cout<<"nnt03. EXIT";
cout<<"nntPlease Select Your
Option (1-3) ";
cin>>ch;
clrscr();
switch(ch)
{
case '1': result();
break;
case '2': entry_menu();
break;
case '3':
break;
}
}while(ch!='3');
}
//***********************************
****************************
// function to write in file
//***********************************
*****************************
void write_student()
{
student st;
ofstream fout;
fout.open("student.dat",ios::binar
y|ios::app);
st.getdata();
fout.write((char *) &st,
sizeof(student));
fout.close();
cout<<"nnStudent record Has Been
Created ";
getch();
}
//***********************************
****************************
// function to read all records
from file
//***********************************
*****************************
void display_all()
{
student st;
ifstream fin;
fin.open("student.dat",ios::binary
);
if(!fin)
{
cout<<"File could not be open
!! Press any Key...";
getch();
return;
}
cout<<"nnnttDISPLAY ALL
RECORD !!!nn";
while(fin.read((char *) &st,
sizeof(student)))
{
st.showdata();
cout<<"nn~+~+~+~+~+~+~+~+~+~+~+~
+~+~+~+~+~+~n";
}
fin.close();
getch();
}
//***********************************
****************************
// function to read specific
record from file
//***********************************
*****************************
void display_sp(int n)
{
student st;
ifstream fin;
fin.open("student.dat",ios::binary
);
if(!fin)
{
cout<<"File could not be open
!! Press any Key...";
getch();
return;
}
int flag=0;
while(fin.read((char *) &st,
sizeof(student)))
{
if(st.retrollno()==n)
{
st.showdata();
flag=1;
}
}
fin.close();
if(flag==0)
cout<<"nnrecord not exist";
getch();
}
//***********************************
****************************
// function to modify record of
file
//***********************************
*****************************
void modify_student(int n)
{
int found=0;
student st;
fstream Fio;
Fio.open("student.dat",ios::binary
|ios::in|ios::out);
if(!Fio)
{
cout<<"File could not be open
!! Press any Key...";
getch();
return;
}
while(Fio.read((char *) &st,
sizeof(student)) && found==0)
{
if(st.retrollno()==n)
{
st.showdata();
cout<<"nnPlease Enter The
New Details of student"<<endl;
st.getdata();
int pos=(-1)*sizeof(st);
Fio.seekp(pos,ios::cur);
Fio.write((char *) &st,
sizeof(student));
cout<<"nnt Record
Updated";
found=1;
}
}
Fio.close();
if(found==0)
cout<<"nn Record Not Found ";
getch();
}
//***********************************
****************************
// function to delete record of
file
//***********************************
*****************************
void delete_student(int n)
{
int g=0;
student st;
ifstream fin;
fin.open("student.dat",ios::binary
);
if(!fin)
{
cout<<"File could not be open
!! Press any Key...";
getch();
return;
}
ofstream fout;
fout.open("Temp.dat",ios::binary);
while(fin.read((char *) &st,
sizeof(student)))
{
if(st.retrollno()!=n)
{
fout.write((char *) &st,
sizeof(student));
}
else
{
g=1;
}
}
fout.close();
fin.close();
remove("student.dat");
rename("Temp.dat","student.dat");
if(g==1)
cout<<"nntRecord Deleted
..";
else
cout<<"nnFILE NOT
FOUND.....";
getch();
}
//***********************************
****************************
// function to display all
students grade report
//***********************************
*****************************
void class_result()
{
student st;
ifstream fin;
fin.open("student.dat",ios::binary
);
if(!fin)
{
cout<<"File could not be open
!! Press any Key...";
getch();
return;
}
cout<<"nnttALL STUDENTS RESULT
nn";
cout<<"~~~~~~~~^~~~~~~~~~~~~^~~~~~
^~~~~~^~~~~~^~~~~~^~~~~~~^~~~~~~~~^~~
~~~~~~n";
cout<<"R.No | Name | P
| C | M | E | CS | %age |
Grade|"<<endl;
cout<<"~~~~~~~~^~~~~~~~~~~~~^~~~~~
^~~~~~^~~~~~^~~~~~^~~~~~~^~~~~~~~~^~~
~~~~~~n";
while(fin.read((char *) &st,
sizeof(student)))
{
st.show_tabular();
cout<<"~~~~~~~~^~~~~~~~~~~~~^~~~~~
^~~~~~^~~~~~^~~~~~^~~~~~~^~~~~~~~~^~~
~~~~~~n";
}
getch();
fin.close();
}
//***********************************
****************************
// function to display result
menu
//***********************************
*****************************
void result()
{
char ch,ein='n';
int rno;
do
{
clrscr();
cout<<"nnntRESULT MENU";
cout<<"nnnt1. Class Result";
cout<<"nnt2. Student Report
Card";
cout<<"nnt3. Back to Main
Menu";
cout<<"nnntEnter Choice
(1/2/3)? ";
cin>>ch;
clrscr();
switch(ch)
{
case '1' : class_result();
break;
case '2' :
cout<<"nntEnter Roll Number Of
Student : "; cin>>rno;
display_sp(rno); break;
case '3' : cout<<"nndo you
want to exit to main
minu?(y/n)t";cin>>ein;
if(ein=='y')
exit();
else
ein='n';
break;
}
getch();
}while(ein=='N'||ein=='n');
}
//***********************************
****************************
// INTRODUCTION FUNCTION
//***********************************
*****************************
void intro()
{
cout<<"nnntt STUDENT";
cout<<"nnttREPORT CARD";
cout<<"nntt PROJECT";
cout<<"nnntMADE BY : ROSHAN
KUMAR BASTIA";
cout<<"ntTEACHER:
Mr.R.K.ASNANI";
cout<<"ntSCHOOL : KENDRIYA
VIDYALAYA,BAIKUNTHPUR";
getch();
}
//***********************************
****************************
// ENTRY / EDIT MENU FUNCTION
//***********************************
*****************************
void entry_menu()
{
char ch;
int num;
char ein='n';
do
{ clrscr();
cout<<"nnntENTRY MENU";
cout<<"nnt1.CREATE STUDENT
RECORD";
cout<<"nnt2.DISPLAY ALL
STUDENTS RECORDS";
cout<<"nnt3.SEARCH STUDENT
RECORD ";
cout<<"nnt4.MODIFY STUDENT
RECORD";
cout<<"nnt5.DELETE STUDENT
RECORD";
cout<<"nnt6.BACK TO MAIN
MENU";
cout<<"nntPlease Enter Your
Choice (1-6) ";
cin>>ch;
clrscr();
switch(ch)
{
case '1': write_student();
break;
case '2': display_all();
break;
case '3':
cout<<"nntPlease Enter The roll
number "; cin>>num;
display_sp(num);
break;
case '4':
cout<<"nntPlease Enter The roll
number "; cin>>num;
modify_student(num);break;
case '5':
cout<<"nntPlease Enter The roll
number "; cin>>num;
delete_student(num);break;
case '6': cout<<"nndo you
want to exit to main
minu?(y/n)t";cin>>ein;
if(ein=='y')
exit();
else
ein='n';
break;
default: cout<<"a";
}
getch();
}while(ein=='N'||ein=='n');
}
void exit()
{
}
//***********************************
****************************
// END OF PROJECT
//***********************************
****************************
Conclusion
This project is user friendly and menu driven package.The
application is fully tested by us. User modify it very easily.
The application is helpful for the School Departments.
The application has been developed with a view to reduce the
workload and also to provide faster service.
Sumita Arora Computer science with c++
Internet
Bibliography
Mr. R.k.Asnani -computer science teacher

More Related Content

What's hot

System Analysis and Design 6th edition chapter 14
System Analysis and Design 6th edition chapter 14System Analysis and Design 6th edition chapter 14
System Analysis and Design 6th edition chapter 14
Matthew McKenzie
 
Student Management System report
Student Management System reportStudent Management System report
Student Management System report
Chandresh Prasad
 
e-commerce web development project report (Bookz report)
e-commerce web development project report (Bookz report)e-commerce web development project report (Bookz report)
e-commerce web development project report (Bookz report)
Mudasir Ahmad Bhat
 
Quiz app (android) Documentation
Quiz app (android) DocumentationQuiz app (android) Documentation
Quiz app (android) Documentation
Aditya Nag
 
Hospital management system project
Hospital management system projectHospital management system project
Hospital management system projectHimani Chopra
 
54039271 atm-project-report
54039271 atm-project-report54039271 atm-project-report
54039271 atm-project-reportKalpana Reddy
 
Android Based Application Project Report.
Android Based Application Project Report. Android Based Application Project Report.
Android Based Application Project Report.
Abu Kaisar
 
Atm project
Atm projectAtm project
Online Quiz System Project PPT
Online Quiz System Project PPTOnline Quiz System Project PPT
Online Quiz System Project PPT
Shanthan Reddy
 
Python Project On Cosmetic Shop system
Python Project On Cosmetic Shop systemPython Project On Cosmetic Shop system
Python Project On Cosmetic Shop system
vikram mahendra
 
Python Project on Computer Shop
Python Project on Computer ShopPython Project on Computer Shop
Python Project on Computer Shop
vikram mahendra
 
Web Development on Web Project Report
Web Development on Web Project ReportWeb Development on Web Project Report
Web Development on Web Project Report
Milind Gokhale
 
Atm simulation mini project using Python programming language
Atm simulation  mini project using Python programming language Atm simulation  mini project using Python programming language
Atm simulation mini project using Python programming language
Mauryasuraj98
 
Operating systems for class 9th class
Operating systems for class 9th classOperating systems for class 9th class
Operating systems for class 9th class
Ankit Kumar
 
Online Restaurant Management System
Online Restaurant Management SystemOnline Restaurant Management System
Online Restaurant Management System
Khwaja Yunus Ali Medical University
 
Online banking for industrial presentation in college sav(1)
Online banking for industrial presentation in college  sav(1)Online banking for industrial presentation in college  sav(1)
Online banking for industrial presentation in college sav(1)
shubham pandey
 
sports management synopsis
sports management synopsissports management synopsis
sports management synopsis
kaushik pandey
 
A CASE Lab Report - Project File on "ATM - Banking System"
A CASE Lab Report - Project File on  "ATM - Banking System"A CASE Lab Report - Project File on  "ATM - Banking System"
A CASE Lab Report - Project File on "ATM - Banking System"
joyousbharat
 
Computer Science Internship Report PDF Leena AI
Computer Science Internship Report PDF Leena AIComputer Science Internship Report PDF Leena AI
Computer Science Internship Report PDF Leena AI
shadowhazard77
 

What's hot (20)

System Analysis and Design 6th edition chapter 14
System Analysis and Design 6th edition chapter 14System Analysis and Design 6th edition chapter 14
System Analysis and Design 6th edition chapter 14
 
Student Management System report
Student Management System reportStudent Management System report
Student Management System report
 
e-commerce web development project report (Bookz report)
e-commerce web development project report (Bookz report)e-commerce web development project report (Bookz report)
e-commerce web development project report (Bookz report)
 
Quiz app (android) Documentation
Quiz app (android) DocumentationQuiz app (android) Documentation
Quiz app (android) Documentation
 
Hospital management system project
Hospital management system projectHospital management system project
Hospital management system project
 
54039271 atm-project-report
54039271 atm-project-report54039271 atm-project-report
54039271 atm-project-report
 
Android Based Application Project Report.
Android Based Application Project Report. Android Based Application Project Report.
Android Based Application Project Report.
 
Atm project
Atm projectAtm project
Atm project
 
Online Quiz System Project PPT
Online Quiz System Project PPTOnline Quiz System Project PPT
Online Quiz System Project PPT
 
Python Project On Cosmetic Shop system
Python Project On Cosmetic Shop systemPython Project On Cosmetic Shop system
Python Project On Cosmetic Shop system
 
Python Project on Computer Shop
Python Project on Computer ShopPython Project on Computer Shop
Python Project on Computer Shop
 
Web Development on Web Project Report
Web Development on Web Project ReportWeb Development on Web Project Report
Web Development on Web Project Report
 
Atm simulation mini project using Python programming language
Atm simulation  mini project using Python programming language Atm simulation  mini project using Python programming language
Atm simulation mini project using Python programming language
 
Operating systems for class 9th class
Operating systems for class 9th classOperating systems for class 9th class
Operating systems for class 9th class
 
Online Restaurant Management System
Online Restaurant Management SystemOnline Restaurant Management System
Online Restaurant Management System
 
Online quiz system
Online quiz systemOnline quiz system
Online quiz system
 
Online banking for industrial presentation in college sav(1)
Online banking for industrial presentation in college  sav(1)Online banking for industrial presentation in college  sav(1)
Online banking for industrial presentation in college sav(1)
 
sports management synopsis
sports management synopsissports management synopsis
sports management synopsis
 
A CASE Lab Report - Project File on "ATM - Banking System"
A CASE Lab Report - Project File on  "ATM - Banking System"A CASE Lab Report - Project File on  "ATM - Banking System"
A CASE Lab Report - Project File on "ATM - Banking System"
 
Computer Science Internship Report PDF Leena AI
Computer Science Internship Report PDF Leena AIComputer Science Internship Report PDF Leena AI
Computer Science Internship Report PDF Leena AI
 

Viewers also liked

Project. Microsoft Windows Nt Networking
Project. Microsoft Windows Nt NetworkingProject. Microsoft Windows Nt Networking
Project. Microsoft Windows Nt Networking
bksp
 
Math for Smart Kids Gr.5
Math for Smart Kids Gr.5Math for Smart Kids Gr.5
Math for Smart Kids Gr.5
Diwa Learning Systems Inc
 
Product project report
Product project reportProduct project report
Product project reportRajesh Patel
 
Project report on Performance Appraisal of BSNL
Project report on Performance Appraisal of BSNLProject report on Performance Appraisal of BSNL
Project report on Performance Appraisal of BSNLVipul Sachan
 
12th bst project on marketing management
12th bst project on marketing management   12th bst project on marketing management
12th bst project on marketing management Jasmeet Singh
 
marketing project on colgate
marketing project on colgatemarketing project on colgate
marketing project on colgateAnu Reddy
 
Computer Science Investigatory Project Class 12
Computer Science Investigatory Project Class 12Computer Science Investigatory Project Class 12
Computer Science Investigatory Project Class 12Self-employed
 
Project report on ONLINE REAL ESTATE BUSINESS
Project report on ONLINE REAL ESTATE BUSINESSProject report on ONLINE REAL ESTATE BUSINESS
Project report on ONLINE REAL ESTATE BUSINESS
Divyesh Shah
 
Marketing Management Project.
Marketing Management Project.Marketing Management Project.
Marketing Management Project.
roomzkazi
 
Sample project -Marketing Management
Sample project -Marketing Management Sample project -Marketing Management
Sample project -Marketing Management
Mamta Narula
 
XII Marketing Project Work
XII Marketing Project WorkXII Marketing Project Work
XII Marketing Project Work
Rahil Jain
 

Viewers also liked (12)

Hitesh1
Hitesh1Hitesh1
Hitesh1
 
Project. Microsoft Windows Nt Networking
Project. Microsoft Windows Nt NetworkingProject. Microsoft Windows Nt Networking
Project. Microsoft Windows Nt Networking
 
Math for Smart Kids Gr.5
Math for Smart Kids Gr.5Math for Smart Kids Gr.5
Math for Smart Kids Gr.5
 
Product project report
Product project reportProduct project report
Product project report
 
Project report on Performance Appraisal of BSNL
Project report on Performance Appraisal of BSNLProject report on Performance Appraisal of BSNL
Project report on Performance Appraisal of BSNL
 
12th bst project on marketing management
12th bst project on marketing management   12th bst project on marketing management
12th bst project on marketing management
 
marketing project on colgate
marketing project on colgatemarketing project on colgate
marketing project on colgate
 
Computer Science Investigatory Project Class 12
Computer Science Investigatory Project Class 12Computer Science Investigatory Project Class 12
Computer Science Investigatory Project Class 12
 
Project report on ONLINE REAL ESTATE BUSINESS
Project report on ONLINE REAL ESTATE BUSINESSProject report on ONLINE REAL ESTATE BUSINESS
Project report on ONLINE REAL ESTATE BUSINESS
 
Marketing Management Project.
Marketing Management Project.Marketing Management Project.
Marketing Management Project.
 
Sample project -Marketing Management
Sample project -Marketing Management Sample project -Marketing Management
Sample project -Marketing Management
 
XII Marketing Project Work
XII Marketing Project WorkXII Marketing Project Work
XII Marketing Project Work
 

Similar to computer science project

Aditya Singh Final Project(Academics Management)
Aditya Singh Final Project(Academics Management)Aditya Singh Final Project(Academics Management)
Aditya Singh Final Project(Academics Management)Aditya Singh
 
CCE management system
CCE management systemCCE management system
CCE management system
Trish004
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
Dezyneecole
 
Reshma Kodwani , BCA Third Year
Reshma Kodwani , BCA Third YearReshma Kodwani , BCA Third Year
Reshma Kodwani , BCA Third Year
dezyneecole
 
Project.12
Project.12Project.12
Project.12
GS Kosta
 
Deepika Mittal , BCA Third Year
Deepika Mittal , BCA Third YearDeepika Mittal , BCA Third Year
Deepika Mittal , BCA Third Year
dezyneecole
 
ResumeAnkitaNagane (1)
ResumeAnkitaNagane (1)ResumeAnkitaNagane (1)
ResumeAnkitaNagane (1)Ankita Nagane
 
Asp .Net Website on E Learning
Asp .Net Website on E LearningAsp .Net Website on E Learning
Asp .Net Website on E Learning
Mujeeb Rehman
 
Ram Prasad , BCA Third Year
Ram Prasad , BCA Third YearRam Prasad , BCA Third Year
Ram Prasad , BCA Third Year
Dezyneecole
 
Online_Examination
Online_ExaminationOnline_Examination
Online_ExaminationRupam Dey
 
School Management (c++)
School Management (c++) School Management (c++)
School Management (c++)
Nirdhishwar Nirdhi
 
CSEG1001Unit 2 C Programming Fundamentals
CSEG1001Unit 2 C Programming FundamentalsCSEG1001Unit 2 C Programming Fundamentals
CSEG1001Unit 2 C Programming Fundamentals
Dhiviya Rose
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
Dezyneecole
 
Online exam
Online examOnline exam
Online exam
HarshitaBhargava4
 
IRJET- Course outcome Attainment Estimation System
IRJET-  	  Course outcome Attainment Estimation SystemIRJET-  	  Course outcome Attainment Estimation System
IRJET- Course outcome Attainment Estimation System
IRJET Journal
 
My Professional Profile
My Professional ProfileMy Professional Profile
My Professional Profile
Mark Reha
 
Big data project
Big data projectBig data project
Big data project
Kedar Kumar
 
Pankajkumar1- B.Tech(CSE) 2015 Batch
Pankajkumar1- B.Tech(CSE) 2015 BatchPankajkumar1- B.Tech(CSE) 2015 Batch
Pankajkumar1- B.Tech(CSE) 2015 Batchpankaj kumar
 

Similar to computer science project (20)

Aditya Singh Final Project(Academics Management)
Aditya Singh Final Project(Academics Management)Aditya Singh Final Project(Academics Management)
Aditya Singh Final Project(Academics Management)
 
CCE management system
CCE management systemCCE management system
CCE management system
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
 
Reshma Kodwani , BCA Third Year
Reshma Kodwani , BCA Third YearReshma Kodwani , BCA Third Year
Reshma Kodwani , BCA Third Year
 
Project.12
Project.12Project.12
Project.12
 
Deepika Mittal , BCA Third Year
Deepika Mittal , BCA Third YearDeepika Mittal , BCA Third Year
Deepika Mittal , BCA Third Year
 
ResumeAnkitaNagane (1)
ResumeAnkitaNagane (1)ResumeAnkitaNagane (1)
ResumeAnkitaNagane (1)
 
Asp .Net Website on E Learning
Asp .Net Website on E LearningAsp .Net Website on E Learning
Asp .Net Website on E Learning
 
Ram Prasad , BCA Third Year
Ram Prasad , BCA Third YearRam Prasad , BCA Third Year
Ram Prasad , BCA Third Year
 
Online_Examination
Online_ExaminationOnline_Examination
Online_Examination
 
Shriram Resume
Shriram ResumeShriram Resume
Shriram Resume
 
School Management (c++)
School Management (c++) School Management (c++)
School Management (c++)
 
CSEG1001Unit 2 C Programming Fundamentals
CSEG1001Unit 2 C Programming FundamentalsCSEG1001Unit 2 C Programming Fundamentals
CSEG1001Unit 2 C Programming Fundamentals
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
 
Online exam
Online examOnline exam
Online exam
 
Resume
ResumeResume
Resume
 
IRJET- Course outcome Attainment Estimation System
IRJET-  	  Course outcome Attainment Estimation SystemIRJET-  	  Course outcome Attainment Estimation System
IRJET- Course outcome Attainment Estimation System
 
My Professional Profile
My Professional ProfileMy Professional Profile
My Professional Profile
 
Big data project
Big data projectBig data project
Big data project
 
Pankajkumar1- B.Tech(CSE) 2015 Batch
Pankajkumar1- B.Tech(CSE) 2015 BatchPankajkumar1- B.Tech(CSE) 2015 Batch
Pankajkumar1- B.Tech(CSE) 2015 Batch
 

Recently uploaded

678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
CarlosHernanMontoyab2
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
Tamralipta Mahavidyalaya
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
Special education needs
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
MIRIAMSALINAS13
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Po-Chuan Chen
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
EduSkills OECD
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 

Recently uploaded (20)

678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 

computer science project

  • 1. :-Students progress System prepared by~ ROSHAN KUMAR BASTIA 12th ‘A’ Roll. No.:- 10 Kendriya Vidyalaya S.E.C.L, Baikunthpur(497339),(C.G) 2015-2016 Computer Project
  • 2. SUBMITTED IN THE PARTIAL FULFILLMENT OF THE REQUIREMENT OF CBSE BOARD Thisistocertifythatprojectworkentitled: Student progress record SYSTEM Hasbeen carriedout by Studentsof classXII ‘A’ RoshanKumarBASTIA Kendriya Vidyalaya,SECL,Baikunthpur(C.G) Hehadsubmittedthisprojectduringthe Academicyear2015-2016, Towardspartial fulfilment of requirement Of CBSE Board. CERTIFICATE
  • 3. Mr.R.K.Asanani Signature (ComputerTeacher) [External] ACKNOWLEDGMENT I am extremely grateful to Mr. R.k.Asnani, Teacher of Department of Computer Science for his able guidance and useful suggestions, which helped me in completing the project work, in time. I would also like to thank all the teaching and non-teaching staff of Computer Science department who helped me directly or indirectly in the completion of this project i.e. Student progress System. Finally, yet importantly, I would like to express my heartfelt thanks to my beloved parents for their blessings, my friends/classmates for their help and wishes for the successful completion of this project.
  • 4. RoshankumarBASTIA KendriyavidyalayaSECL, Baikunthpur(C.G) This project has been prepared keeping in view the requirements of Central Board Of Secondary Education, New Delhi. This project deals with every aspect of C++ functions and graphics. User defined functions have been developed to make the program code as simpler and easier as possible. This project is aimed at providing a thorough base and understanding in various latest trends and techniques in C++. PREFACE
  • 5. INTRODUCTION The project undertaken does the automation of the STUDENT PROGRESS SYSTEM in the organization. It builds on the performance, reliability, quality and ease of use. It also includes a number of features that further establish it as a better GUI application. STUDENT PROGRESS SYSTEM is a system having Menu Driven User Interface. It contains the vital data and marks scored in academics by student. Administrator of the project can enter new student record, display all/specific student record, he can modify and delete student record. Administrator can enter new student record, display all records, modify & delete student records. The software is developed in C++. The software is developed to reduce the workload for and provides better service to the students.
  • 6. The main reason of developing this software is to reduce the workload and to provide ease of use to accomplish the desired task. We have chosen C++ because of its ease of use, versatility & ability to implement OOP in its true sense. It offers a great combination of in built scientific, mathematical, string, graphical functions & scores of other user defined functions to accomplish any given task. C++ emphasizes more on what has to be done rather than how it has to be done. C++ allows the programmer to carry out virtually any task, given the knowledge and skill of its application. The OOP (Object Oriented Programming )approach is based on certain concepts that help to attain its goal of overcoming the drawbacks or shortcomings of conventional programming approach. These general concepts of OOP are: -  DATA ABSTRACTION C++ & OOP concepts
  • 7.  DATA ENCAPSULATION  MODULARITY  INHERITANCE (HIERARCHY)  POLYMORPHISM MINIMUM: - Intel 486 Processor 8 MB RAM 14” Monitor Keyboard US layout Printer System Requirements
  • 8. RECOMMENDED: - Intel core i5 processor CPU @ 2.20GHz 8 GB RAM 14” Colour led Monitor Keyboard US Layout Mouse Printer //*********************************** **************************** // HEADER FILE USED IN PROJECT //*********************************** ***************************** #include<fstream.h> #include<iomanip.h> Source Code
  • 9. #include<stdio.h> #include<conio.h> //*********************************** **************************** // CLASS USED IN PROJECT //*********************************** ***************************** class student { int rollno; char name[50]; int p_marks, c_marks, m_marks, e_marks, cs_marks; float per; char grade; void calculate(); //function to calculate grade public:
  • 10. void getdata(); //function to accept data from user void showdata(); //function to show data on screen void show_tabular(); int retrollno(); }; //class ends here void student::calculate() { per=(p_marks+c_marks+m_marks+e_mar ks+cs_marks)/5.0; if(per>=60) grade='A'; else if(per>=50) grade='B'; else if(per>=33) grade='C'; else grade='F'; }
  • 11. void student::getdata() { cout<<"nEnter The roll number of student "; cin>>rollno; cout<<"nnEnter The Name of student "; gets(name); cout<<"nEnter The marks in physics out of 100 : "; cin>>p_marks; cout<<"nEnter The marks in chemistry out of 100 : "; cin>>c_marks; cout<<"nEnter The marks in maths out of 100 : "; cin>>m_marks; cout<<"nEnter The marks in english out of 100 : "; cin>>e_marks; cout<<"nEnter The marks in computer science out of 100 : ";
  • 12. cin>>cs_marks; calculate(); } void student::showdata() { cout<<"nRoll number of student : "<<rollno; cout<<"nName of student : "<<name; cout<<"nMarks in Physics : "<<p_marks; cout<<"nMarks in Chemistry : "<<c_marks; cout<<"nMarks in Maths : "<<m_marks; cout<<"nMarks in English : "<<e_marks; cout<<"nMarks in Computer Science : "<<cs_marks; cout<<"nPercentage of student is : "<<per; cout<<"nGrade of student is : "<<grade;
  • 13. } void student::show_tabular() { cout<<setw(3)<<setfill(' ')<<rollno<<"t|"; cout<<setw(3)<<setfill(' ')<<name<<"ttbbb|"; cout<<setw(3)<<setfill(' ')<<p_marks<<" |"; cout<<setw(3)<<setfill(' ')<<c_marks<<" |"; cout<<setw(3)<<setfill(' ')<<m_marks<<" |"; cout<<setw(3)<<setfill(' ')<<e_marks<<" |"; cout<<setw(3)<<setfill(' ')<<cs_marks<<" |"; cout<<" "<<per<<" |"; cout<<" "<<grade<<" |"; cout<<endl; }
  • 14. int student::retrollno() { return rollno; } //*********************************** **************************** // function declaration //*********************************** ***************************** void write_student(); //write the record in binary file void display_all(); //read all records from binary file void display_sp(int); //accept rollno and read record from binary file void modify_student(int); //accept rollno and update record of binary file
  • 15. void delete_student(int); //accept rollno and delete selected records from binary file void class_result(); //display all records in tabular format from binary file void result(); //display result menu void intro(); //display welcome screen void entry_menu(); //display entry menu on screen void exit() ; //*********************************** **************************** // THE MAIN FUNCTION OF PROGRAM //*********************************** ***************************** void main() { char ch;
  • 16. cout.setf(ios::fixed|ios::showpoin t); cout<<setprecision(2); // program outputs decimal number to two decimal places clrscr(); intro(); do { clrscr(); cout<<"nnntMAIN MENU"; cout<<"nnt01. RESULT MENU"; cout<<"nnt02. ENTRY/EDIT MENU"; cout<<"nnt03. EXIT"; cout<<"nntPlease Select Your Option (1-3) "; cin>>ch; clrscr(); switch(ch) { case '1': result(); break;
  • 17. case '2': entry_menu(); break; case '3': break; } }while(ch!='3'); } //*********************************** **************************** // function to write in file //*********************************** ***************************** void write_student() { student st; ofstream fout; fout.open("student.dat",ios::binar y|ios::app);
  • 18. st.getdata(); fout.write((char *) &st, sizeof(student)); fout.close(); cout<<"nnStudent record Has Been Created "; getch(); } //*********************************** **************************** // function to read all records from file //*********************************** ***************************** void display_all() { student st; ifstream fin; fin.open("student.dat",ios::binary ); if(!fin)
  • 19. { cout<<"File could not be open !! Press any Key..."; getch(); return; } cout<<"nnnttDISPLAY ALL RECORD !!!nn"; while(fin.read((char *) &st, sizeof(student))) { st.showdata(); cout<<"nn~+~+~+~+~+~+~+~+~+~+~+~ +~+~+~+~+~+~n"; } fin.close(); getch(); }
  • 20. //*********************************** **************************** // function to read specific record from file //*********************************** ***************************** void display_sp(int n) { student st; ifstream fin; fin.open("student.dat",ios::binary ); if(!fin) { cout<<"File could not be open !! Press any Key..."; getch(); return; } int flag=0;
  • 21. while(fin.read((char *) &st, sizeof(student))) { if(st.retrollno()==n) { st.showdata(); flag=1; } } fin.close(); if(flag==0) cout<<"nnrecord not exist"; getch(); } //*********************************** **************************** // function to modify record of file //*********************************** *****************************
  • 22. void modify_student(int n) { int found=0; student st; fstream Fio; Fio.open("student.dat",ios::binary |ios::in|ios::out); if(!Fio) { cout<<"File could not be open !! Press any Key..."; getch(); return; } while(Fio.read((char *) &st, sizeof(student)) && found==0) { if(st.retrollno()==n) { st.showdata();
  • 23. cout<<"nnPlease Enter The New Details of student"<<endl; st.getdata(); int pos=(-1)*sizeof(st); Fio.seekp(pos,ios::cur); Fio.write((char *) &st, sizeof(student)); cout<<"nnt Record Updated"; found=1; } } Fio.close(); if(found==0) cout<<"nn Record Not Found "; getch(); } //*********************************** **************************** // function to delete record of file
  • 24. //*********************************** ***************************** void delete_student(int n) { int g=0; student st; ifstream fin; fin.open("student.dat",ios::binary ); if(!fin) { cout<<"File could not be open !! Press any Key..."; getch(); return; } ofstream fout; fout.open("Temp.dat",ios::binary); while(fin.read((char *) &st, sizeof(student))) {
  • 26. //*********************************** **************************** // function to display all students grade report //*********************************** ***************************** void class_result() { student st; ifstream fin; fin.open("student.dat",ios::binary ); if(!fin) { cout<<"File could not be open !! Press any Key..."; getch(); return; }
  • 27. cout<<"nnttALL STUDENTS RESULT nn"; cout<<"~~~~~~~~^~~~~~~~~~~~~^~~~~~ ^~~~~~^~~~~~^~~~~~^~~~~~~^~~~~~~~~^~~ ~~~~~~n"; cout<<"R.No | Name | P | C | M | E | CS | %age | Grade|"<<endl; cout<<"~~~~~~~~^~~~~~~~~~~~~^~~~~~ ^~~~~~^~~~~~^~~~~~^~~~~~~^~~~~~~~~^~~ ~~~~~~n"; while(fin.read((char *) &st, sizeof(student))) { st.show_tabular(); cout<<"~~~~~~~~^~~~~~~~~~~~~^~~~~~ ^~~~~~^~~~~~^~~~~~^~~~~~~^~~~~~~~~^~~ ~~~~~~n"; } getch(); fin.close(); }
  • 28. //*********************************** **************************** // function to display result menu //*********************************** ***************************** void result() { char ch,ein='n'; int rno; do { clrscr(); cout<<"nnntRESULT MENU"; cout<<"nnnt1. Class Result"; cout<<"nnt2. Student Report Card"; cout<<"nnt3. Back to Main Menu"; cout<<"nnntEnter Choice (1/2/3)? ";
  • 29. cin>>ch; clrscr(); switch(ch) { case '1' : class_result(); break; case '2' : cout<<"nntEnter Roll Number Of Student : "; cin>>rno; display_sp(rno); break; case '3' : cout<<"nndo you want to exit to main minu?(y/n)t";cin>>ein; if(ein=='y') exit(); else ein='n'; break; } getch(); }while(ein=='N'||ein=='n');
  • 30. } //*********************************** **************************** // INTRODUCTION FUNCTION //*********************************** ***************************** void intro() { cout<<"nnntt STUDENT"; cout<<"nnttREPORT CARD"; cout<<"nntt PROJECT"; cout<<"nnntMADE BY : ROSHAN KUMAR BASTIA"; cout<<"ntTEACHER: Mr.R.K.ASNANI"; cout<<"ntSCHOOL : KENDRIYA VIDYALAYA,BAIKUNTHPUR"; getch(); }
  • 31. //*********************************** **************************** // ENTRY / EDIT MENU FUNCTION //*********************************** ***************************** void entry_menu() { char ch; int num; char ein='n'; do { clrscr(); cout<<"nnntENTRY MENU"; cout<<"nnt1.CREATE STUDENT RECORD"; cout<<"nnt2.DISPLAY ALL STUDENTS RECORDS"; cout<<"nnt3.SEARCH STUDENT RECORD "; cout<<"nnt4.MODIFY STUDENT RECORD";
  • 32. cout<<"nnt5.DELETE STUDENT RECORD"; cout<<"nnt6.BACK TO MAIN MENU"; cout<<"nntPlease Enter Your Choice (1-6) "; cin>>ch; clrscr(); switch(ch) { case '1': write_student(); break; case '2': display_all(); break; case '3': cout<<"nntPlease Enter The roll number "; cin>>num; display_sp(num); break; case '4': cout<<"nntPlease Enter The roll number "; cin>>num; modify_student(num);break;
  • 33. case '5': cout<<"nntPlease Enter The roll number "; cin>>num; delete_student(num);break; case '6': cout<<"nndo you want to exit to main minu?(y/n)t";cin>>ein; if(ein=='y') exit(); else ein='n'; break; default: cout<<"a"; } getch(); }while(ein=='N'||ein=='n'); } void exit() { }
  • 34. //*********************************** **************************** // END OF PROJECT //*********************************** **************************** Conclusion
  • 35. This project is user friendly and menu driven package.The application is fully tested by us. User modify it very easily. The application is helpful for the School Departments. The application has been developed with a view to reduce the workload and also to provide faster service. Sumita Arora Computer science with c++ Internet Bibliography
  • 36. Mr. R.k.Asnani -computer science teacher