0% found this document useful (0 votes)
148 views

Maharashtra State Board of Technical Education: Ice-Cream Cone

This micro project aims to develop an ice cream cone applet using Java. It will utilize object oriented programming concepts like inheritance and graphics handling. The project plan involves defining requirements, designing the system, coding and testing, and concluding. Skills like developing programs using applets and graphics in Java will be practiced. An ice cream cone shape will be drawn using polygon and arc commands in the paint method of an Applet class. This micro project addresses various course outcomes related to OOP, inheritance, graphics and applets in Java.

Uploaded by

40Neha Pagariya
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
148 views

Maharashtra State Board of Technical Education: Ice-Cream Cone

This micro project aims to develop an ice cream cone applet using Java. It will utilize object oriented programming concepts like inheritance and graphics handling. The project plan involves defining requirements, designing the system, coding and testing, and concluding. Skills like developing programs using applets and graphics in Java will be practiced. An ice cream cone shape will be drawn using polygon and arc commands in the paint method of an Applet class. This micro project addresses various course outcomes related to OOP, inheritance, graphics and applets in Java.

Uploaded by

40Neha Pagariya
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 9

MAHARASHTRA STATE BOARD OF TECHNICAL

EDUCATION

SHRI H. H. J. B. POLYTECHNIC , CHANDWAD-42310(Nasik)

MICRO PROJECT

Academic year: 2021-22

TITLE OF PROJECT

Ice-cream cone

Program: Computer Technology

code: CM(R)

Course: Java

Course code: 22412


MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

Sr.No Name of group Roll No. Enrollment No. Seat No.


members
1. Neha Pagariya 40 2000790201
2. Janhvi Tathed 23 2000790184

Certificate
This is to certify _______________________of 4th Semester of Diploma in Computer
Technology of Institute, SHHJB POLYTECHNIC, CHANDWAD (Code: 0079) has completed the
Micro Project satisfactorily in Subject: - Java (22412) for the academic year 2020- 2021 as
prescribed in the curriculum.

Place: CHANDWAD Date: ………………………

Subject Teacher Principal Head Of The Department


Index

Sr.No CONTENT Page No.


1 PART A
1.0 Brief Introduction
1.1 Aim of Micro Project
1.2 Action Plan
1.3 Resource Required

2 PART B
2.0 Brief Introduction
2.1 Aim of Micro Project
2.2 Course Outcome Integrated
2.3 Actual Procedure Followed
2.4 Actual Resource Used
2.5 Outpu
2.6 Skill Developed
PART A-Plan

Title of micro-project : Ice-cream cone


 Aim/Benefits of the Micro-Project :
1.Applets are supported by most of the web browsers.
2. Applets works on client side so less response time.
3. Easy to develop.
4. Applets are fast.

 Course Outcomes Addressed :


1. Develop program using object oriented methodology in java.
2. Apply concepts of inheritance for code reusability.
3. Develop program using multithreading
4. Implement exception handling.
5. Develop a program using Graphics and Applets.
6. Develop a program for Handling I/O and File stream.

 Proposed Methodology :

This is a semester wise Micro-project for the subject Java. Title of project is ‘Ice-cream cone’and it is
performed by the students Neha Pagariya , Janhvi Tathed. This project is made with the help of Components
of Java Programming .

1.0 Action Plan

Sr.no Details of Activity Planned Start Planned Finish


Date Date
1 Abstract 01-04-22 08-04-22
2 Introduction 09-04-22 14-04-22
3 Requirement Analysis 15-04-22 21-04-22
4 System Design 22-04-22 24-04-22
5 Coding testing 26-04-22 01-05-22
6 conclusion 09-05-22 12-05-22
7 Submission of Report 14-05-22 16-05-22
2.0 Resource Required

Sr.No Name of Specification Quantity Remarks


Resource/Material
1. Hardware Computer Computer,RAM 1 13 processor
System minium 2GB and
Onwards but not
limited to
2. Operating System Windows Xp 1 Windows 10
/windows10
/linux
3. Java book ---- 1 -
PART-B

1.0 Rational

Java is platform independent, open source object oriented programming language


enriched with free and open source libraries. In current industrial Scenario java has the
broad industry supports and is prerequisite with many allied technologies like Advance
Java, Java server, pages and Android application development. Thus, current industrial
necessitate acquiring java knowledge for computer engineering and information
technologies graduates. This course Develops necessary skills in students to apply object
oriented programming techniques in java so that student will be able to develop
complete applications using Core java.

2.0 Aim/Benefits of the Micro-Project :


1. Applets are supported by most of the web browsers.

2. Applets works on client side so less response time.

3. Easy to develop.

4. Applets are fast.

3.0 Course Outcomes Addressed :


1. Develop program using object oriented methodology in java.
2. Apply concepts of inheritance for code reusability.
3. Develop program using multithreading
4. Implement exception handling.
5. Develop a program using Graphics and Applets.
6. Develop a program for Handling I/O and File stream.
4.0 Actual Methodology followed
import java.awt.*;
import java.applet.*;
public class icecream extends Applet
{

Color c=new Color(153,102,0);


int x[]={150,450,285};
int y[]={295,295,600};

public void inti()


{

public void paint(Graphics g)


{

g.setColor(c);
g.fillPolygon(x,y,3);
g.drawPolygon(x,y,3);
g.setColor(Color.pink);

g.fillArc(150,150,300,290,360,180);
g.drawArc(150,150,300,290,360,180);
setBackground(Color.black);
}
}

/*<applet code="icecream.class" width=400 height=700>


</applet>*/
5.0 Resources Required

Sr.No Name of Specification Quantity Remarks


Resource/Material
1. Hardware Computer Computer,RAM 1 13 processor
System minium 2GB and
Onwards but not
limited to
2. Operating System Windows Xp 1 Windows 10
/windows7 /linux
3. Java book ---- 1 -

6.0 Skill Developed/Learning Outcome of this Micro-Project

1. Understanding various Concept Of Applet.

2. In this micro project we understand various Commands of java.

You might also like