JavaReportnew
JavaReportnew
Certificate
This is to certify that,
Roll
No Name Enrollment No Seat No
Seal Of
Institute
Part A: Micro Project Proposal
1.Introduction:
Java Swing is a part of Java's standard library used to create Graphical
User Interfaces (GUIs). It provides a rich set of widgets and packages to create
interactive applications.
A Simple Calculator built using Swing allows users to perform basic arithmetic
operations such as Addition, Subtraction, Multiplication, and Division via a
graphical interface with buttons and text fields.
6.Action Plan:
Sr. Details of Planned Planned Name of responsible
No. Activity Start Finish team member
Date Date
1 Define Problem of Harshal Bhatu Patil,
the Project Chaitali Samadhan Patil
2 Searching and Snehal Tukaram Deore
Gathering ,Chaitali Samadhan Patil
Information
3 Designing the Harshnil Dilip Patil,
Project Dnyaneshwar Bhatu Patil
4 Documentation All Members
3.Literature Review:
I. Calculators in the Classroom
• Author: Donald R. Quinn
• Published in: NASSP Bulletin, 1976
• Overview: This early study discusses the implications of introducing
calculators into classrooms. It explores the potential benefits and
challenges, including concerns about students' reliance on calculators
and the impact on learning fundamental arithmetic skills
SimpleCalculatorSwing()
{
setTitle("Swing Calculator");
setSize(300, 400);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
BorderLayout B1 = new BorderLayout();
setLayout(B1);
String[] buttons =
{
"7", "8", "9", "/",
"4", "5", "6", "*",
"1", "2", "3", "-",
"0", "C", "=", "+"
};
add(panel, BorderLayout.CENTER);
setVisible(true);
}
7.References:
•
• https://www.geeksforgeeks.org/java-swing/
• https://www.tutorialspoint.com/swing/index.htm
• https://www.javatpoint.com/java-swing
• ChatGPT
Evaluation Sheet for the Micro Project Annexure
Academic Year: 2024-2025 Name of Faculty: Mr.Chaitali S. Patil
Sem: Fourth Program Name and Code: CO4K
Course code: 314317 Course Name: Java Programming