You are on page 1of 14

STUDENT’S DETAILS

STUDENT’S DETAILS
A project report submitted to Christ School ICSE , Bangalore for the partial fulfillment of the requirement for
the Award of class in
8th Std
IN
COMPUTER SCIENCE
Submitted by
ADITHYA.G
8403
Under the Guidance of
M.NARAYANA
Dept of Computer science

Department of Computer Science

CHRIST SCHOOL
(Approved by ICSE, New Delhi and Affiliated to Board )
Bangalore-560029

CHRIST ICSE SCHOOL Page 1


STUDENT’S DETAILS

2019-2020
CHRIST SCHOOL
(Approved by ICSE, New Delhi and Affiliated to Board )
Bangalore-560029

BONAFIDE CERTIFICATE

This is to certify that the project report entitled , being submitted by Mr ADITHYA.G,

Reg No.8403, in partial fulfillment for the award of the class of 8th to The BOARD is a record of bonafide

work carried out by him/her under my guidance and supervision.

Internal Guide Head of Department

M.NARAYANA MCA M.NARAYANA MCA


Asst Teacher Asst Teacher
Computer Science Computer Science

CHRIST ICSE SCHOOL Page 2


STUDENT’S DETAILS

CHRIST SCHOOL
(Approved by ICSE, New Delhi and Affiliated to Board )
Bangalore-560029

CERTIFICATE OF EVALUATION

SCHOOL NAME : CHRIST SCHOOL(ICSE)


BRANCH : COMPUTER APPLICATIONS

NAME OF THE STUDENT : ADITHYA.G

PROJECT TITLE : STUDENT’S DETAILS

The project report submitted in partial fulfillment for the award of 8th in Approved by ICSE, New
Delhi and Affiliated to Board Bangalore-560029 is evaluated and confirmed as a report of the work

done by the aforesaid student.

Submission for the project viva voice held on

INTERNAL GUIDE HOD OF CS DEPT

EXTERNAL EXAMINER

CHRIST ICSE SCHOOL Page 3


STUDENT’S DETAILS

CHRIST SCHOOL
(Approved by ICSE, New Delhi and Affiliated to Board )
Bangalore-560029

DECLARATION

I do here by declare that the project work entitled “STUDENT’S DETAILS ” is a genuine
work carried out by me under the guidance of M. NARAYANA, in partial fulfillment for the
award of the class-VIII from Approved by ICSE, New Delhi and Affiliated to Board Bangalore-
560029.

ADITHYA.G
8403

CHRIST ICSE SCHOOL Page 4


STUDENT’S DETAILS

ACKNOWLEDGEMENT

I extend my high regards to our Honorable manger Rev. Dr. GEORGE EDAYADIYIL (CMI),
Principal Rev Fr. Nilson Davis Pallissery( CMI) for providing all facilities in the school and pleased to
bestow heartfelt gratitude to our lab technicians for the cooperation during the project.

I am grateful to Ms. ANASAMMA GEORGE,CO-ORDINATE, Department Of PHYSICS for her constant


encouragement during the dissertation and convey my sincere appreciations for her suggestions and
encouragement without which this work might be an unfulfilled dream.
I am grateful to Mr. M.NARAYANA Asst Teacher, Department Of C.S. for his constant
encouragement during the dissertation and convey my sincere appreciations for his suggestions and
encouragement without which this work might be an unfulfilled dream.

I would like to express my sincere and profound gratitude for unmatched service and valuable guidance
in each and every stage of completing this work successfully.

I am thankful to the Internal Department Committee who have invested their valuable time to conduct
our monthly presentations and provided their feedback with a lot of useful suggestions. We also thank all the
Staff members, Department of Computer Science for their encouragement and assistance.

ADITHYA.G
8403

CHRIST ICSE SCHOOL Page 5


STUDENT’S DETAILS

CONTENTS
1. Abstract
2. Introduction
3. Coding
4. Output Screens
5. Software Requirements
6. Hardware Requirements
7. Conclusion
8. References

CHRIST ICSE SCHOOL Page 6


STUDENT’S DETAILS

ABSTRACT
Java is a widely used programming language expressly designed for use in the
distributed environment of the internet. Java can be used to create complete
applications that may run on a single computer or be distributed among servers and
clients in a network.

In this project I will be using Java programing language for printing my name,
class, roll no., age, marks of six subjects, total marks of these six subjects and
percentage of these subjects. In this I am going to use the ifelseifladder operator to
give multiple conditions in the program and the print statement (System.out.println)
to print my personal details like my roll no., class, name etc. I will also use many
formulae to execute the percentage and the total marks of all subjects.

CHRIST ICSE SCHOOL Page 7


STUDENT’S DETAILS

INTRODUCTION
Java is a widely used programming language expressly designed for use in the
distributed environment of the internet. Java can be used to create complete
applications that may run on a single computer or be distributed among servers and
clients in a network.
It is the most popular programming language for android smart
phone applications and is also among the most favored for the development of edge
devices and the internet of things. Java was designed to have the look and feel of
the C++ programming language, but is simpler to use and enforces an object-
oriented programming model. It can be used to build a small application module
or applet for use as part of a webpage.

It is difficult to provide a single reason as to why the Java programming


language has become so ubiquitous. However, the language's major characteristics
have all played a part in its success, including the following components:

 Programs created in Java offer portability in a network


 Java is object-oriented
 The code is robust.
 Data is secure.
 Applets offer flexibility.
 Developers can learn Java quickly.

CHRIST ICSE SCHOOL Page 8


STUDENT’S DETAILS

CODING
public class Comp
{
public static void main(String name, int age, int math, int eng, int comp,int sci,int geo, int kan, int
Roll_no, String Class, char section)
{
int total;
float percentage;
System.out.println("Your name is:"+name);
System.out.println("Your class is:"+Class+section);
System.out.println("Your Roll_no is:"+Roll_no);
System.out.println("You are"+age+"years old");
System.out.println("Maths marks is:"+math);
System.out.println("Geography marks is:"+geo);
System.out.println("Science marks is:"+sci);
System.out.println("Computer marks is :"+comp);
System.out.println("English marks is:"+eng);
System.out.println(“Kannada marks is:”+kan);
total=math+eng+comp+sci+geo+kan;
System.out.println("Total marks is:"+total);
percentage=(math+geo+sci+comp+eng+kan)/6;
System.out.println("Percentage is:"+percentage);
if(percentage>90)
{
System.out.println("Grade:A");
}
else if(percentage>=70&&percentage<90)
{
System.out.println("Grade:B");
}
else if(percentage>=50&&percentage<70)
{
System.out.println("Grade:C");
}
else if(percentage>=40&&percentage<=50)
{
System.out.println("Grade:D");
}
else
{
System.out.println("Grade:E");
}
}
}
CHRIST ICSE SCHOOL Page 9
STUDENT’S DETAILS

ALGORITHM
Step 1: Input the name, class, roll no., age, marks of maths, English,
geography, kannada, science and computer.

Step 2: Find the total marks. (maths +geography +science +English


+kannada +computer)

Step 3: Find the percentage of these marks.

Step 4: If the percentage is greater than 90 then it is grade A.

Step 5: If the percentage is less than 90 and greater than or equal to 70 then
it is grade B
.
Step 6: If the percentage is less than or equal to 70 and greater than or equal
to 50 then it is grade C.

Step 7: If the percentage is less than or equal to 50 and greater than or equal
to 40 then it is grade D.

Step 8: If the percentage is less than 40 then it is grade E.

CHRIST ICSE SCHOOL Page


10
STUDENT’S DETAILS

FLOWCHART
START

Read name, roll


no, class, marks
of: math, geo,
kan, com, eng,
sci.

Find percentage & total marks

yes
If (per>90) Grade A

no

yes
If (per <90 && >=70 Grade B

no

yes
If (per <70 && >=50 Grade C

no

yes
If (per <50 && >=40 Grade D

no

yes
If (per <40) Grade E STOP

CHRIST ICSE SCHOOL Page


11
STUDENT’S DETAILS

OUTPUT SCREEN

CHRIST ICSE SCHOOL Page


12
STUDENT’S DETAILS

SOFTWARE REQUIRMENTS
The software that are needed for this project are:

 Bluej

 MS Word

 Google Search

HARDWARE REQUIRMENTS
The hardware that is required for doing this project are:

 Desktop /Laptop

 Mouse

 Keyboard

 Monitor

 CPU

 Modem

CHRIST ICSE SCHOOL Page


13
STUDENT’S DETAILS

CONCLUSION
In computer science, Java language has made execution of programs very simple.
It has many applications in different fields.

REFERENCES
Computer text book-Logix.
www.google.co.in.

CHRIST ICSE SCHOOL Page


14

You might also like