Pong is a table tennis – themed arcade video game , featuring simple two dimensional graphics. There are 2 versions of this game, single player and multiplayer.In single-player mode player need to play against the AI Paddle.
This Arcade video game is mainly based on two of the most important and core concepts in java they are,
Applets
Threads
Applet is a special type of program that is embedded in the webpage to generate the dynamic content. It runs inside the browser and works at client side. The Applet class provides an interface by which the viewer or browser obtains information about the applet and controls the applet's execution.
Threads allows a program to operate more efficiently by doing multiple tasks at the same time. Threads can be used to perform complicated tasks in the background without interrupting the main program.

