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)
   {  try
      {  int x = Integer.parseInt("three");
      }
      System.out.println("OK");
      catch (NumberFormatException nfe)
      {  System.out.println("Not OK");
      }
   }
}
(a) The program does not compile.
(b) It compiles and, when run, displays: OK
(c) It compiles and, when run, displays: Not OK
(d) It compiles but, when run, an exception is thrown all the way back to the Java interpreter.

Select the most appropriate answer.