Package CS1;
Import java.awt. *;
Public Class Frame1 Extends Frame
{
Public frame1 (String Title)
{
Super (title); //
}
Public static void main (string args [])
{
Frame1 test = new frame1 ("wk");
Test.setlocation (100, 100);
Test.setsize (300, 300);
Test.setVisible (TRUE);
}
}