Charu Lalwani
Charu Lalwani
Charu Lalwani
SCHOOL
MADAR, AJMER
A PROJECT REPORT
ON
SOFTWARE
FOR
STUDENT DATA MANAGEMENT SYSTEM
Submitted To Submitted By
Mr. Kapil Sidhpuria Charu Lalwani
PGT (C.S.) R.NO. – 2800339
SIGNATURE OF INTERNAL EXAMINER SIGNATURE OF PRINCIPAL
acknowledged.
1. Acknowledgement
2. Requirements Analysis
3. Feasibility Study
4. Coding
5. Output Screen
6. System Specifications
7. Bibliography
ACKNOWLEDGEMENT
All the four activities of systems have been automated and efforts have been made to
minimize the manual working.
The paper work is reduced to minimal level. Computer prepares the lists of
customers.
2. No Manual Work.
There is no manual work. All the processes are done through computer.
3. Record of students.
Register can now easily be maintained by producing a report with a format of adding
students’ records .
Data is now stored at one place. Any information regarding anything can be easily
available to the user.
6. User-friendly Software
7. Flexibility
The system is more flexible than the manual system being used presently.
8. Beneficial
The system is easy to use and reduces the user’s workload a lot. It provides timely
and accurate information and there is automatic generation of reports.
FEASIBILITY
STUDY
FEASIBILITY STUDY
During the course of completion of this project work, the complete analysis of proposed
system was done. In the analysis task, a complete care about the feasibility of the proposed
system was taken. The following feasibility analyses were carried out during the course of
this project work on call management system for customer care:
1. Economical feasibility
2. Technical feasibility
3. Operational feasibility
Economical Feasibility:-
Economic analysis is the most frequently used method for evaluating the effectiveness
of a candidate system. The proposed system is economically feasible because the benefits
and the savings that are expected from a candidate system outweigh the cost incurred. In
this case we are getting the intangible benefits in terms of low cost of maintenance of data,
less redundancy and getting the quick results.
Technical Feasibility:-
The existing Hardware and Software facilities support the proposed system. Computer
and storage media are available and software can be developed.
Hardware configuration:
a) Processor : Intel (R) CPU G3260 @ 3.30GHz
b) Memory : 4 GB RAM
c) HD capacity : 500 GB
Software configuration:-
a) Operating system : Windows 10
b) Back end : csv files
c) Front end : Python
There is nothing which is not technically feasible.
Operational feasibility:-
As in the case of present system the entire work is being done manually. So the data
being scattered, information retrieval becomes difficult and maintaining database is also very
tedious. In case of proposed system, entire work will be done automatically. So the above
details regarding the feasibility study show that the design of the proposed system is very
effective.
CODING
import os
import csv
def addrecord():
print("================")
f=open('students.csv','a')
s=csv.writer(f)
name=input('Enter name=')
marks=float(input('Enter marks='))
rec=[rollno,name,marks]
s.writerow(rec)
f.close()
print("Record Saved")
def modifyrecord():
print("Modify a Record")
print("================")
f=open('students.csv','r',newline=' \r\n')
f1=open('temp.csv','w',newline=' \r\n')
f1=open('temp.csv','a',newline='\r\n')
s=csv.reader(f)
s1=csv.writer(f1)
for rec in s:
if rec[0]==r:
print("Rollno=",rec[0])
print("Name=",rec[1])
print("Marks=",rec[2])
if choice=='y' or choice=='Y':
rec[0]=rollno
rec[1]=name
rec[2]=marks
rec=[rollno,name,marks]
s1.writerow(rec)
print("Record Modified")
else:
s1.writerow(rec)
else:
s1.writerow(rec)
f.close()
f1.close()
os.remove("students.csv")
os.rename("temp.csv","students.csv")
def deleterecord():
print("Delete a Record")
print("================")
f=open('students.csv','r',newline='\r\n')
f1=open('temp.csv','w',newline=' \r\n')
f1=open('temp.csv','a',newline=' \r\n')
s=csv.reader(f)
s1=csv.writer(f1)
for rec in s:
if rec[0]==r:
print("Rollno=",rec[0])
print("Name=",rec[1])
print("Marks=",rec[2])
if choice=='y' or choice=='Y':
pass
print("Record Deleted")
else:
s1.writerow(rec)
else:
s1.writerow(rec)
f.close()
f1.close()
os.remove("students.csv")
os.rename("temp.csv","students.csv")
def viewall():
print("===================")
s=csv.reader(f)
i=1
for rec in s:
print(rec[0],end="\t\t")
print(rec[1],end="\t\t")
print(rec[2])
i+=1
f.close()
print("Search a Record")
print("===================")
s=csv.reader(f)
for rec in s:
if rec[0]==r:
print("Rollno=",rec[0])
print("Name=",rec[1])
print("Marks=",rec[2])
f.close()
def mainmenu():
choice=0
while choice!=6:
print("\n")
print("Main Menu")
print("==========")
print("6.Exit")
if choice==1:
addrecord()
elif choice==2:
modifyrecord()
elif choice==3:
deleterecord()
elif choice==4:
search()
elif choice==5:
viewall()
elif choice==6:
print("Software Terminated")
break
mainmenu()
SYSTEM
SPECIFICATI
ONS
SYSTEM SPECIFICATIONS
HARDWARE SPECIFICATIONS
The following is the hardware specification of the system on which the software has been
developed:-
Machine Used : Pentium Dual Core Processor 3.30 GHz, 4 GB RAM, 500 GB Hard
Disk
SOFTWARE SPECIFICATIONS
Front End Used : Python
http://python.mykvs.in/uploads/showp
apers/testproject.php
OUTPUT
SCREENS