final java..
final java..
Guided By
Mr. A.D.Thete
2023-2024
Department of Computer Engineering
Government Polytechnic, Yavatmal
Certificate
2023-2024
Has been duly completed by the following group of students under my guidance,
in a satisfactory manner as partial fulfillment of the diploma
course in Computer Engineering MSBTE, Mumbai.
Submitted by-
Kedar Butle
Shivani Kumdale
Vashnavi Kumdale
Annexure I
-TITLE OF MICROPROJECT-
1. We get better knowledge about Core Java Programming and it’s Packages.
2. We know about different types of uses of Java libraries
In accordance with aim of the project and assure the proposed and desired outcome we are
committed to adopt the following methodologies:
First of all topic is selected then topic is discussed between the group member and their advice.
And also we had gone through some content available on internet regarding the project topic and
the textbooks.
Secondly we discuss with the teacher about the main topic to be highlighted in the project and
showed it to subject teacher and take their advice for any correction if required
Finally some of the information collected from the internet for this micro-project. By combining all
the data related to your topic we had created this micro-project. And last the project has been
ready and submit to the teachers
5.0 Resource Required
2. Open - Needful
learning Videos and
resources websites
3. Computer - Useful
system Installed
JDK
,notepad.
-TITLE OF MICROPROJECT-
1.0 Rational:
We have collected the resources from various sites and also from our reference book. We read all
the information and collected the main information for fulfilment of the project. we also discussed
the information with our group members.
5.0 Actual methodology followed:
In accordance with aim of the project and assure the proposed and desired outcome we
are committed to adopt the following methodologies:
First of all topic is selected then topic is discussed between the group member and their
advice. And also we had gone through some content available on internet regarding the
project topic and the textbooks.
Secondly we discuss with the teacher about the main topic to be highlighted in the
project and showed it to subject teacher and take their advice for any correction if
required
Finally some of the information collected from the internet for this micro-project. By
combining all the data related to your topic we had created this micro-project. And last
the project has been ready and submit to the teacher.
2. Open - Needful
learning Videos and
resources websites
7.0 Outputs of the Micro-project
8.0 Skills Developed/Learning outcomes of the microproject:
1. We learnt how to work actively in group
4. Negotiation skills.
5. Motivation techniques.
while (choice != 3) {
System.out.println("Please select an option:");
System.out.println("1. Show Time");
System.out.println("2. Timer");
System.out.println("3. Exit"); System.out.print("Your choice:
");
choice = scanner.nextInt(); switch
(choice)
{ case 1:
showTime(); break; case
2: showTimer(); break;
case 3:
System.out.println("Exiting..."); break; default:
System.out.println("Invalid choice. Please try again."); break;
}
}
scanner.close();
}