0% found this document useful (0 votes)
34 views24 pages

Cgpa Calculation

The document is a student report card project in Computer Science for Gandhi Public School, Gunupur. It contains code to generate report cards for 5 students with details like test scores, percentages, GPA, and overall CGPA calculated. The code takes student name and roll number as input to display the appropriate report card. It also includes typical project sections like introduction, hardware/software requirements, and bibliography.

Uploaded by

Kenguva Srinath
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views24 pages

Cgpa Calculation

The document is a student report card project in Computer Science for Gandhi Public School, Gunupur. It contains code to generate report cards for 5 students with details like test scores, percentages, GPA, and overall CGPA calculated. The code takes student name and roll number as input to display the appropriate report card. It also includes typical project sections like introduction, hardware/software requirements, and bibliography.

Uploaded by

Kenguva Srinath
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 24

Gandhi Public School,

Gunupur
A PROJECT OF
COMPUTER SCIENCE
ON
“STUDENT REPORT CARD”

NAME :
CLASS : XI “C”
ROLL NO :
Guided By: Mr.Gurucharan Mohapatro
Contents
Topic Pg. no.
Certificate…………………… 1

Acknowledgement………… 2

Introduction………………... 3
Header Files………………….

Source code……………………

Output ………………………….

Limitations…………………….

Conclusion……………………..

Hardware and software

requirements………………….

Bibliography…………………..
Certificate
This is to certify that Master/Miss ……………………………......
having Roll no. ……………….….studying in class ……… in
Gandhi Public School, has satisfactorily completed in Computer
Science with the title “STUDENT REPORT CARD” as a part of
course completion in pursuance of AISSCE during the academic
year 2018-19.

The project is original in conceptualization & has been executed


by him/her under the guidance of Mr. Gurucharan Mahapatro.

SIGNATURE OF THE TEACHER SIGNATURE OF THE PRINCIPAL

SIGNATURE OF THE EXAMINER SCHOOL STAMP


Acknowledgement
I would like to express my special thanks of
gratitude to my teacher Mr.Gurucharan
Mahapatro as well as our principal Mr. Prasanta
Kumar Panda who gave me this golden
opportunity to do this wonderful project on the
topic “STUDENT REPORT CARD”, which also
helped me in doing a lot of research and I came to
know about so many new things.
I am really thankful to them.
Secondly I would also like to thank my parents
and friends who helped me a lot in finishing this
project within the limited time.
I am making this project not only for marks but
also to increase my knowledge.

Signature of the Student


Introduction

Header files
Source code
print("///////////GANDHI PUBLIC SCHOOL,GUNUPUR///////////")

print("*********PROGRESS REPORT CARD SESSION:2018-19*********")

x=str(input(“Enter your name:”))

y=int(input(“Enter your roll No:”))

if y==1 and x==“Srinath”:

print(“/////////UNIT TEST-1/////////”)

print(“marks in English:30”)

print(“marks in Maths:31”)

print(“marks in Physics:34”)

print(“marks in Chemistry:32”)

print(“marks in Computer:34”)

u_percent=(30+31+34+32+34)*100/(165)

print(“percent in Unit test-1:”,u_percent)

GPA=u_percent/(10)

print(“GPA:”,GPA)

print("********HALF YEARLY*********")

print(“marks in English:88”)

print(“marks in Maths:89”)

print(“marks in Physics:87”)
print(“marks in Chemistry:92”)

print(“marks in Computer:94”)

h_percent=(88+89+87+92+94)*100/(500)

print(“percent in Half Yearly:”,h_percent)

GPA=h_percent/(10)

print(“GPA:”,GPA)

print("///////////UNIT TEST-2//////////")

print(“marks in English:30”)

print(“marks in Maths:34”)

print(“marks in Physics:29”)

print(“marks in Chemistry:32”)

print(“marks in Computer:30”)

u2_percent=(30+34+29+32+30)*100/(165)

print(“percent in Unit test-2:”,u2_percent)

GPA= u2_percent/(10)

print(“GPA:”,GPA)

print("**********ANNUAL EXAMINATION***********")

print(“marks in English:90”)

print(“marks in Maths:91”)

print(“marks in Physics:99”)

print(“marks in Chemistry:92”)

print(“marks in Computer:94”)
A_percent=(90+91+99+92+94)*100/(500)

print(“percent in Annual test:”,A_percent)

CGPA=(u_percent+h_percent+u2_percent+A_percent)/40

print(“CGPA:”,CGPA)

elif y==2 and x==“Abhilash”:

print(“/////////UNIT TEST-1/////////”)

print(“marks in English:33”)

print(“marks in Maths:34”)

print(“marks in Physics:23”)

print(“marks in Chemistry:30”)

print(“marks in Computer:17”)

u_percent=(33+34+23+30+17)*100/(165)

print(“percent in Unit test-1:”,u_percent)

GPA=u_percent/(10)

print(“GPA:”,GPA)

print("********HALF YEARLY*********")

print(“marks in English:67”)

print(“marks in Maths:56”)

print(“marks in Physics:54”)

print(“marks in Chemistry:98”)

print(“marks in Computer:99”)

h_percent=(67+56+54+98+99)*100/(500)
print(“percent in Half Yearly:”,h_percent)

GPA=h_percent/(10)

print(“GPA:”,GPA)

print("///////////UNIT TEST-2//////////")

print(“marks in English:24”)

print(“marks in Maths:34”)

print(“marks in Physics:28”)

print(“marks in Chemistry:35”)

print(“marks in Computer:27”)

u2_percent=(24+34+28+35+27)*100/(165)

print(“percent in Unit test-2:”,u2_percent)

GPA= u2_percent/(10)

print(“GPA:”,GPA)

print("**********ANNUAL EXAMINATION***********")

print(“marks in English:96”)

print(“marks in Maths:98”)

print(“marks in Physics:89”)

print(“marks in Chemistry:89”)

print(“marks in Computer:64”)

A_percent=(96+98+89+89+64)*100/(500)

print(“percent in Annual test:”,A_percent)

CGPA=(u_percent+h_percent+u2_percent+A_percent)/40
print(“CGPA:”,CGPA)

elif y==3 and x==“Harikrishna Reddy”:

print(“/////////UNIT TEST-1/////////”)

print(“marks in English:32”)

print(“marks in Maths:34”)

print(“marks in Physics:33”)

print(“marks in Chemistry:35”)

print(“marks in Computer:30”)

u_percent=(32+34+33+35+30)*100/(165)

print(“percent in Unit test-1:”,u_percent)

GPA=u_percent/(10)

print(“GPA:”,GPA)

print("********HALF YEARLY*********")

print(“marks in English:98”)

print(“marks in Maths:89”)

print(“marks in Physics:90”)

print(“marks in Chemistry:96”)

print(“marks in Computer:100”)

h_percent=(98+89+90+96+100)*100/(500)

print(“percent in Half Yearly:”,h_percent)

GPA=h_percent/(10)

print(“GPA:”,GPA)
print("///////////UNIT TEST-2//////////")

print(“marks in English:34”)

print(“marks in Maths:34”)

print(“marks in Physics:22”)

print(“marks in Chemistry:33”)

print(“marks in Computer:32”)

u2_percent=(34+34+22+33+32)*100/(165)

print(“percent in Unit test-2:”,u2_percent)

GPA= u2_percent/(10)

print(“GPA:”,GPA)

print("**********ANNUAL EXAMINATION***********")

print(“marks in English:90”)

print(“marks in Maths:98”)

print(“marks in Physics:100”)

print(“marks in Chemistry:87”)

print(“marks in Computer:93”)

A_percent=(90+98+100+87+93)*100/(500)

print(“percent in Annual test:”,A_percent)

CGPA=(u_percent+h_percent+u2_percent+A_percent)/40

print(“CGPA:”,CGPA)

elif y==4 and x==“Suvham Kumar”:


print(“/////////UNIT TEST-1/////////”)

print(“marks in English:28”)

print(“marks in Maths:34”)

print(“marks in Physics:32”)

print(“marks in Chemistry:27”)

print(“marks in Computer:30”)

u_percent=(28+34+32+27+30)*100/(165)

print(“percent in Unit test-1:”,u_percent)

GPA=u_percent/(10)

print(“GPA:”,GPA)

print("********HALF YEARLY*********")

print(“marks in English:77”)

print(“marks in Maths:89”)

print(“marks in Physics:87”)

print(“marks in Chemistry:92”)

print(“marks in Computer:84”)

h_percent=(77+89+87+92+84)*100/(500)

print(“percent in Half Yearly:”,h_percent)

GPA=h_percent/(10)

print(“GPA:”,GPA)

print("///////////UNIT TEST-2//////////")

print(“marks in English:29”)
print(“marks in Maths:31”)

print(“marks in Physics:32”)

print(“marks in Chemistry:33”)

print(“marks in Computer:30”)

u2_percent=(29+31+32+33+30)*100/(165)

print(“percent in Unit test-2:”,u2_percent)

GPA= u2_percent/(10)

print(“GPA:”,GPA)

print("**********ANNUAL EXAMINATION***********")

print(“marks in English:80”)

print(“marks in Maths:97”)

print(“marks in Physics:87”)

print(“marks in Chemistry:82”)

print(“marks in Computer:84”)

A_percent=(80+97+87+82+84)*100/(500)

print(“percent in Annual test:”,A_percent)

CGPA=(u_percent+h_percent+u2_percent+A_percent)/40

print(“CGPA:”,CGPA)

elif y==5 and x==“Ankit”:

print(“/////////UNIT TEST-1/////////”)

print(“marks in English:25”)
print(“marks in Maths:29”)

print(“marks in Physics:33”)

print(“marks in Chemistry:3”)

print(“marks in Computer:4”)

u_percent=(25+29+33+3+4)*100/(165)

print(“percent in Unit test-1:”,u_percent)

GPA=u_percent/(10)

print(“GPA:”,GPA)

print("********HALF YEARLY*********")

print(“marks in English:78”)

print(“marks in Maths:70”)

print(“marks in Physics:89”)

print(“marks in Chemistry:90”)

print(“marks in Computer:96”)

h_percent=(78+70+89+90+96)*100/(500)

print(“percent in Half Yearly:”,h_percent)

GPA=h_percent/(10)

print(“GPA:”,GPA)

print("///////////UNIT TEST-2//////////")

print(“marks in English:27”)

print(“marks in Maths:2”)

print(“marks in Physics:32”)
print(“marks in Chemistry:30”)

print(“marks in Computer:35”)

u2_percent=(27+2+32+30+35)*100/(165)

print(“percent in Unit test-2:”,u2_percent)

GPA= u2_percent/(10)

print(“GPA:”,GPA)

print("**********ANNUAL EXAMINATION***********")

print(“marks in English:70”)

print(“marks in Maths:76”)

print(“marks in Physics:80”)

print(“marks in Chemistry:62”)

print(“marks in Computer:74”)

A_percent=(70+76+80+62+74)*100/(500)

print(“percent in Annual test:”,A_percent)

CGPA=(u_percent+h_percent+u2_percent+A_percent)/40

print(“CGPA:”,CGPA)

else:

print(“student not found”)


Sample Output
Limitations
Conclusion
Hardware
requirements
Hard Disk 160 GB
Processor Intel Pentium III or later
Main Memory(RAM) 256 MB
Cache Memory 512 KB
Monitor 14 inch Color Monitor
Keyboard 108 Keys
Mouse Optical Mouse

Software
requirements
Front End/Language PHP
Back End/Database MYSQL
Additional Tools XAPM Server
Operating System Windows 7, 8, 9, 10, XP
Bibliography

You might also like