What is the effect of attempting to compile and run the Java program that consists only of the following:
public class Test
{
   public static void main(String[] args)
   {  JFrame f = new JFrame("A Window");
      f.setBounds(100, 100, 200, 200);
   }
}
(a) The program compiles but, when run, nothing new appears on the screen.
(b) It does not compile.
(c) It compiles and, when run, a 200 x 200 window appears on the screen. Its top left-hand corner is 100 pixels across and 100 pixels down the screen.
(d) It compiles and, when run, a 200 x 200 window appears on the screen. Its bottom left-hand corner is 100 pixels across and 100 pixels up the screen.

Select the most appropriate answer.