STUDENT MANAGEMENT SYSTEM
Class 12 – IT / Computer Science Project (Java)
Acknowledgement
I would like to express my sincere gratitude to my teacher for guiding me throughout this project. I also thank my
parents and friends for their support and encouragement.
Introduction
The Student Management System is a Java-based application designed to manage student records efficiently. It
allows users to add, view, update, and delete student details. This project demonstrates the use of core Java
concepts such as classes, objects, methods, arrays, and conditional statements.
Objectives
1 To understand object-oriented programming concepts in Java.
2 To develop a simple console-based Java application.
3 To manage student records efficiently.
Software Requirements
1 Operating System: Windows / Linux
2 Programming Language: Java (JDK 8 or above)
3 IDE: BlueJ / NetBeans / IntelliJ IDEA
Source Code (Java)
import [Link]; class Student { int roll; String name; int marks; void input() {
Scanner sc = new Scanner([Link]); [Link]("Enter Roll No: "); roll = [Link]();
[Link](); [Link]("Enter Name: "); name = [Link](); [Link]("Enter
Marks: "); marks = [Link](); } void display() { [Link]("Roll No: " + roll);
[Link]("Name: " + name); [Link]("Marks: " + marks); } } public class
StudentManagement { public static void main(String[] args) { Student s = new Student();
[Link](); [Link](); } }
Output
The program asks the user to enter student details such as roll number, name, and marks. After entering the data,
the program displays the entered details on the screen.
Conclusion
This project helped me understand the basics of Java programming and object-oriented concepts. It can be further
enhanced by adding file handling or a database for permanent storage.