Project Sample Document
Project Sample Document
Project Sample Document
ON
[TITLE NAME]
Submitted by
DECEMBER 2023
MALLA REDDY ENGINEERING COLLEGE FOR WOMEN
(Autonomous Institution-UGC, Govt. of India)
NIRF Indian Ranking-2018&2020, Accepted by MHRD, Govt. of India
Band Excellent National Ranking by ARIIA, MHRD, Govt. of India
Accredited by NBA &NAAC with ‘A’ Grade UGC, Govt. of India
Affiliated to JNTUH, Approved by AICTE, ISO 9001:2015 Certified Institution
AAAA+ Rated by Digital Learning Magazine, AAAA Rated by Careers 360 Magazine
Maisammaguda, Dhullapally, Secunderabad, Kompally-500100
__________________________________________________________
CERTIFICATE
This is to certify that this is the bonafied record of the project titled
“STUDENT INFROMATION SYSTEM” submitted by
Of First year B. Tech, in the partial fulfillment of the requirements for the degree
of Bachelor of Technology in Computer Science and Engineering during the year
2023-2024. The results embodied in this project report have not been submitted
to any other university or institute for the award of any degree or diploma.
We feel ourselves honored and privileged to place our warm salutation to our college Malla
Reddy Engineering College for Women and department of Computer Science & Engineering which
gave us the opportunity to have expertise in engineering and profound technical knowledge.
We would like to convey thanks to our internal project guide Mr/Mrs NAME OF PPS
FACULTY for his/her regular guidance and constant encouragement and we are extremely grateful to
him/her for his/her valuable suggestions and unflinching co-operation throughout project work.
we express our heartiest thanks to Dr. A. SWARUPA RANI, Head of the Department, H&S
for encouraging us in every aspect of our project
We wish to convey gratitude to our Principal Dr. Y. MADHAVEE LATHA, for providing us
with the environment and means to enrich our skills and motivating us in our endeavor and helping us
realize our full potential.
Name1(rollnumber)
Name2(rollnumber)
Name3(rollnumber)
ABSTRACT
After every year of B.Tech we have result analysis .By this we can know our results. The
results are displaced here are is according to the performance of the student. And no
manipulation is made.
Title Page no
Abstract i
1. Introduction 1-2
2. Requirements 3
3. Analysis 4
4. Design 5-9
5. Implementation 10-17
6. Output Screens 18
8. References 20
1. INTRODUCTION
It is used to analysis the marks of a student. The results are displaced according to the
performance of student and manipulation is made.
1.2 Scope
Objectives:
To provide a proper registration channel/System to the new students. To maintain all the
accounts of the students in digital form from enrollment up to the end of the study. To update the
information available to the departments at their desk whenever required in just a click away. To
have a centralized control over the records of the students.
2. REQUIREMENTS
1. RAM 4GB
2. HARDDISK 1TB
3. PROCESSOR PENTIUM I5
3.1 Introduction
Add Student module collects the following attributes values from the user.
Attributes are marks in eng,cpds,m1,mm,phy,chem,tot,avg.And System places this
information into the global variables.
4.1 ALGORITHM
4.2 FLOW CHART
5. IMPLEMENTATION
Coding:
#include<stdio.h>
#include<conio.h>
void create();
void update();
void del();
void display();
void menu();
int cpds,mm,m1,eng,phy,che,tot;
float avg;
void main()
{
clrscr();
menu();
}
void menu()
{
int ch;
printf("1.CREATE THE STUDENT MARKS\n");
printf("2.UPDATE THE STUDENT MARKS\n");
printf("3.DELETE THE STUDENT MARKS\n");
printf("4.DISPLAY THE STUDENT MARKS\n");
printf("5.EXIT FROM THE PROGRAM\n");
scanf("%d",&ch);
switch(ch)
{
case 1:create();
break;
case 2:update();
break;
case 3:del();
break;
case 4:display();
break;
case 5: exit(0);
default:printf("we have entered wrong value\n");
menu();
}
}
void display()
{
printf("********************************************************\n");
printf("****************B.TECH FIRST YEAR MARKS LIST************\n");
printf("********************************************************\n");
printf("**** SUBJECT **** TOTAL **** *\n");
printf("**** ENG **** %d **** *\n",eng);
printf("**** CPDS **** %d **** *\n",cpds);
printf("**** M1 **** %d **** *\n",m1);
printf("**** MM **** %d **** *\n",mm);
printf("**** PHY **** %d **** *\n",phy);
printf("**** CHE **** %d **** *\n",che);
printf("********************** TOTAL=%d *********************\n",tot);
printf("********************** AVG=%f/600 ********************\n",avg);
menu();
}
void del()
{
eng=0;
cpds=0;
m1=0;
mm=0;
phy=0;
che=0;
tot=0;
avg=0;
menu();
}
void create()
{
printf("enter the marks");
printf("1 eng=");
scanf("%d",&eng);
printf("2 cpds=");
scanf("%d",&cpds);
printf("3 m1=");
scanf("%d",&m1);
printf("4 mm=");
scanf("%d",&mm);
printf("5 phy=");
scanf("%d",&phy);
printf("6 che=");
scanf("%d",&che);
tot=eng+cpds+m1+mm+phy+che;
avg=tot/600;
menu();
}
void update()
{
int ch;
printf("\n\n1.english \n2.CPDS\n3.M1\n4.MM\n5.PHY\n6.CHEM\n");
printf("Enter the choice");
scanf("%d",&ch);
switch(ch)
{
case 1:printf("eng\n");
scanf("%d",&eng);
break;
case 2:printf("cpds\n");
scanf("%d",&cpds);
break;
case 3:printf("m1\n");
scanf("%d",&m1);
break;
case 4:printf("mm\n");
scanf("%d",&mm);
break;
case 5:printf("phy\n");
scanf("%d",&phy);
break;
case 6:printf("che\n");
scanf("%d",&che);
break;
default:printf("Enter correct choice");
}menu();
}
6. OUTPUT SCREENS
7. CONCLUSION & FUTURE ENHANCEMENT
This Student Information System project will serve as a useful approach to data
base dialog box to update add, advanced search options for the authorized person. It
serves as a helpful approach for the users. It reduces the time taken by the user to add,
update, delete, view & search the information. Thus, the project is the user-friendly
approach.
In this project we are entering only one record at a time but there is no data base
and in future by using advanced concepts of c-language entering n-records.
8. REFERENCES