Css Microproject Format
Css Microproject Format
Paulbudhe Institute Of
Technology(Polytechnic),Narayandoho
Ahmednagar
DEPARTMENT OF COMPUTER
ENINEERING
MICRO PROJECT
REPORT
ON
Java Programming
FOR
2023-2024
1|P a g e
Dr.N.J.Paulbudhe Institute Of
Technology(Polytechnic),Narayandoho
Ahmednagar
CERTIFICATE
This is to certify that,
have successfully completed the Project work entitled “IP Address Finder” under my supervision,
in the partial fulfillment of the requirements for the TY Diploma in subject CSS and the report
submitted to Prof. Nimase S.S for academic year 2022-2023.
Date :
2|P a g e
ACKNOWLEDGMENT
It is my great pleasure to present the honor and sincere gratitude to my guide Prof. Nimase, Dr.N.J.
Paulbudhe institute of technology(Polytechnic) helped in joining the hands in developing each and
every steps of this project and for valuable guidanceand constant encouragement during completion of
project work. It was my privilege and pleasure to work under his valuable guidance. I am indeed
gratefully to him for providing me helpful suggestions. Due to his constant encouragement and
inspiration I could complete my project work.
I am very thankful to Principal, Dr.N.J.Paulbudhe Institute Of Technology(Polytechnic)
My grateful thanks to ( HOD NAME) Head of Computer Department, for their valuable
guidance, support and constant encouragement.
I express thanks to my family and friends for their support and encouragement at every stage
of successful completion of this project work.
My sincere thank to all those who have directly or indirectly helped me to carry out this work.
vivek Gaikwad
3|P a g e
INDEX
4|P a g e
Introduction
5|P a g e
Course Outcomes :
6|P a g e
CODING
/**
* Write a description of IPFinder here.
* IP address finder by using java swing/AWT with events, networking
// GUI
TestIPFinder()
{
super("IP Finder -19SW24"); // title of Frame passing using ' super '
// label
l = new JLabel("Enter URL:"); // Label
l.setBounds(100,120,180,45); // set the Boundry of label
//TextField
TextF = new JTextField();
TextF.setBounds(100,150,300,50); // set the boundry of TextField
TextF.setForeground(Color.WHITE);
TextF.setBackground(Color.GRAY);
//creating Button
btn = new JButton("Find IP Address");
btn.setBounds(100,220,125,80); //set the boundry of button
btn.setForeground(Color.WHITE);
7|P a g e
btn.setBackground(Color.BLACK);
9|P a g e
OUTPUT
10 | P a g e
After Entering the URL in textbox then click on Find IP
Address, after then a new message window will open
where we can see IP address of Entered URL
11 | P a g e
CONCLUSION
12 | P a g e
Teacher Evaluation Sheet
Name of
Student:…………………………………………………………………………………
Enrolment No……………………………….
Name of Programme…………………………Semester:……………………………….
…………………………………………………………………………………………………
…………………………………………………………………………………………………
…………………………………………………………………………………………………
………………
13 | P a g e
Evaluation as per suggested Rubric for Assessment of Micro-Project
Literature survey/
2
Information Collection
3 Project Proposal
Quality of
6
Prototype/Model
7 Report Preparation
8 Presentation
14 | P a g e
Micro-Project Evaluation Sheet
Note:
Every course teacher is expected to assign marks for group evolution in first 3 columns & individual
evaluation in 4th columns for each group of students as per rubrics.
……………………………………………………………………………………………………………
……………………………………………………………………………………………………………
……………………………………………………………………………………………………………
……………………………………………………………………………………………………………
……………………………………………………………………………………………………………
……………………………………………………………………………………………………………
………………
……………………………………………………………………………………………………………
……………………………………………………………………………………………………………
……………………………………………………………………………………………………………
……………………………………………………………………………………………………………
……………………………………………………………………………………………………………
……………………………………………………………………………………………………………
………………
Signature...................................................................
15 | P a g e