Project Sample Document

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 19

A PROJECT REPORT

ON

[TITLE NAME]

Submitted by

Name1 Roll Num1


Name2 Roll Num2
Name3 Roll Num3

Department of Humanities and Sciences

MALLAREDDY 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

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

STUDENT NAME1 (ROLLNUMBER)


STUDENT NAME2 (ROLLNUMBER)
STUDENT NAME3 (ROLLNUMBER)

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.

INTERNAL GUIDE HOD


PPS FACULTY NAME Dr. A. Swarupa Rani
ACKNOWLEDGEMENT

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.

With Regards and Gratitude

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.

This is to compare the performance of student from previous performance to present


performance. It helps a student for overall development in academics and to know where he/she
lags behind. The results are declared by JNTUH.
INDEX

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

7. Conclusion and Future Enhancement 19

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.1 Purpose of Student Information System Project

The key objectives of the project are to:

 It is used to compare marks of student from his previous performance to present


performance.
 It is used to know the results.
 It is used to know the marks of particular subject.

1.2 Scope

The aim is to adopt a system that:

 In order to know the performance of the student.


 Enables a new model of service delivery.
Provides the University with the ability to succeed in an increasingly competitive
environment.
The Result analysis empowers you to:
Manage Student Information efficiently. Record Student marks in
eng,cpds,m1,mm,phy,che,total,average. Add, Update & Delete Students marks easily.

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

2.1 Hardware Requirements:

1. RAM 4GB
2. HARDDISK 1TB
3. PROCESSOR PENTIUM I5

2.2 Software Requirements:

1. Operating System: Windows XP


2. DEV C++ IDE
3. ANALYSIS PHASE

3.1 Introduction

This whole system is divided into different module.


They are
1. Add Student marks.
2. Update Student marks.
3. Delete Student marks.
4. View Student marks.
5. Print Student marks.

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.

Update Student information:


This module allows the user to change the student marks.

Delete Student Information:


This module allows the user to delete the user from the database.

View Student Database:


This module allows the user to view student marks.

Print Student Information:


This module allows the user to print student marks.
4. DESIGN PHASE

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

1. A Structured Programming Approach Using C by Forouzan


2. C programming by Balagurusamy
3. Let us c by Yashwanth kanethkar
4. Google search engine

You might also like