Final Java Microproject
Final Java Microproject
A Project Report on
Submitted By :-
1. Avishkar Borule (2111630099)
2. Manoj Biradar (2111630105)
3. Ritesh Patil (2111630109)
Guided By :-
Prof. P. L. Satore
Submitted To :
DEPARTMENT OF COMPUTER ENGINEERING
Government Polytechnic, Hingoli
CERTIFICATE
Institute
seal
Marks :
Signature :- __________________________
ACKNOWLEDGEMENT
The satisfaction and euphoria that camp the task would be great but
incomplete without the mention of the people who made it possible
with their constant guidance and encouragement crowns all the
efforts with success.
In this context, we would like thank all the other staff members, both
teaching and non-teaching, who have extended their timely help and
eased our task. Last, but not least, we would like to thank the authors
of various research articles and books that were referred to….
• Table Of Contents
Sr Page
Contents
No. No.
1 Introduction 7
2 Aim 8
3 Source Code 9
4 Output 14
5 Conclusion 15
Introduction
management system.
Source Code :
Import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
class Student {
return rollNumber;
}
}
public School() {
System.out.println(“Name:
Public class
Scanner(System.in);
while (true) {
choice: “);
int choice =
scanner.nextInt();
scanner.nextLine(); //
Switch (choice) {
case 1:
System.out.print(“Enter
String name =
int rollNumber =
scanner.nextInt();
scanner.nextLine(); //
System.out.print(“Enter
String grade =
scanner.nextLine();
school.addStudent(student);
Break;
case 2:
school.displayStudents(); break;
case 3:
System.exit(0); break;
default:
break;
• Output
Output :
Output :
• Conclusion