You are on page 1of 10

Project Report

On
“DEVELOP A SMALL ANIMATION USING APPLET. GRAPHICS AND
MULTITHREADING”
SUBMITTED BY-
Kunal Kunjam Achal Sharnagat
Tushar Kawale Ruchi Sakhare
Khusi Raut Gyarshilal Patle
Shubham Ukey Niraj Patle
Under The Guidance Of
Mr. Rahul Meshram
Lecture Information Technology Department

DEPARTMETN OF INFORMATION TECHNOLOGY


GOVERNMENT POLYTECHNIC, GONDIA

2021-22

Guide By H.O.D
Mr. Rahul Meshram Dr.N.B.Nibudhye
Principal
Dr.C.D.Golghate

ACKNOWLEDGEMENT

       The success and final outcome of this report required a lot of


guidance and assistance from many people and we are extremely
privileged to have got this all along the completion of my report. All that
we have done is only due to such supervision and assistance and we
would not forget to thank them.
       We are extremely thankful to our project guide Rahul Meshram
and head of IT Department (Dr.N.B.Nibudhye)who took keep interest
on our project work and guided us all along, till the completion of our
report work by providing all the necessary information for developing a
good system and for providing such a nice support and guidance,
although he had busy schedule managing the corporate affairs.

        We would not forget to remember principal of Government


Polytechnic College, Gondia (Dr.C.D.Golghate ) for their
encouragement and more over for their timely support and guidance till
the completion of our report work.
      We are thankful to and fortunate enough to get constant
encouragement, support and guidance from all Teaching staffs of
INFORMATION TECHNOLOGY ENGINEERING
DEPARTMENT which helped us in successfully completing our report
work. Also, we would like to extend our sincere esteems to all staff in
laboratory for their timely support.

Micro Project, Dept. IT, GP Gondia 2021-22 Page 2


Sr. Title
No.
1 Rationale

2 Aim/Benefits of the micro-project


3 Course Outcomes Addressed

4 Literature Review

5 Actual Methodology Followed


6 Actual Resources Followed
7 Skill Developed/ learning out of this
Micro-project

8 Applications of this Micro-Project

Micro Project, Dept. IT, GP Gondia 2021-22 Page 3


Title: DEVELOP A SMALL ANIMATION USING APPLET. GRAPHICS AND
MULTITHREADING

1.0 - RATIONALE
The multithreading and applets is aim to implement in project. We
create a small animation of circle using the graphics and
multithreading using applets.

2.0 - AIM OF THE MICTO-PROJECT:-


1. We will creating small animation using applets.
2. To get Knowledge about multithreading.
3. We will be able to use different methods inVB.NET.

3.0 - COURSE OUTCOMES


a. Develop programs using graphics and applet.
b. Develop programs using multithreading.

4.0 - LITERATURE REVIEW


To make this project we can refer:-
As a leading programming language, in-depth knowledge of java is
highly sought after by programmers. Java opens up many opportunities
to programmers with its cross-functionality, efficiency, and scalability.
One of the best ways to get a good grasp of java is through books. Java
programming books cater to different levels of java learning needs. They
are usually more detailed than other resources available out there. There
is no shortage of programming books that teach java, and programmers

Micro Project, Dept. IT, GP Gondia 2021-22 Page 4


have to sift through many books when buying. To make things easier,
our reviewers combed through the tonnes of java learning books to bring
you the best java programming books in 2022. Whether you are a java
novice or expert, there is a java programming book for you on this list.
Book name-Programming with JAVA
Author- Balgurusamy E.
Publication-Megraw Hill Education(India)Private ISBN:9781118311813

5.0 – Proposed Methodology:-


1. We discussed about the topic in our group.
2. Then we distribute work to every member.
3. After that we get the information about our project.
4. And then gathered all the information from all member.
5. Make the list of topics implemented in our micro-project.
6. That all information and ideas about the micro-project feed in the
project.
7. Then make the report and proposal for our micro-project.
8. And our micro-project work is done successfully with the help of
equal participation of single member of our group

6.0 - Resources Required :


S. No. Name of Resources Specifications
1 Computer System Acer Ram- 4GB i3

Micro Project, Dept. IT, GP Gondia 2021-22 Page 5


WINDOWS 10
2 Software JDK 18
3 Search Engine Google

CERTIFICATE
This is certify that the Micro Project Titled
~ DEVELOP A SMALL ANIMATION USING APPLET. GRAPHICS AND
MULTITHREADING ~

Carried out under guidance of Mr. Rahul Meshram , lecturer computer


department and Submitted to The Department Information Technology
By
 Kunal Kunjam (2112420030)
 Tushar Kawale (2112420029)
 Achal Sharnagat (2112420027)
 Ruchi Sakhare (2112420031)
 Gyarshilal Patle (2112420028)
 Khushi Raut (2112420032)

As The partial Fulfillment of Fourth Semester of ‘ Information


Technology’ code (22412) During Summer 2021-22

Mr. Rahul Meshram Dr.N.B.Nibudhye


Guide And Lecturer H.O.D
Department of Information Technology Head of Department

Micro Project, Dept. IT, GP Gondia 2021-22 Page 6


Department of Information Technology Engineering
Government Polytechnic , Gondia
Summer 2021-2022

Code Of Project
Import java.awt.”;
Import java.applet.*;
//<applet code=”AppletBasics” width=400 height=400> </applet>
Public class AppletBasics extends AApplet
{
Int X1=70,y1=70;
Public void paint(Graphics g)
{
g.setColor(Color.red);
//fillRect(int x, int y, int width, int height);
g.fillRect(0,0,this.getwidth(), this.getHeight());
g.setColor(Color.red);
//Filloval(int x, int y, int width, int height);
g.filloval (70,70,20,
20); for (int i=0;i<20;
i++)
{
x1++;
y1++;
repaint();
try
{
Thread.sleep(100);

Micro Project, Dept. IT, GP Gondia 2021-22 Page 7


}
Catch(Exception e)

{
}
}
}. };

Micro Project, Dept. IT, GP Gondia 2021-22 Page 8


Output

Micro Project, Dept. IT, GP Gondia 2021-22 Page 9


Micro Project, Dept. IT, GP Gondia 2021-22 Page 10

You might also like