> 1.how to create applets & jframes?
Applet applet = new Applet();
JFrame frame = new JFrame();
> 2. How to change background of aplpets & Jframe
applet.getContentPane().setBackground(Color.black);
frame.getContentPane().setBackground(Color.black);