36. What is the result of compiling and running the 
    following code?

class Fruit
{
public Fruit(String color) 
{
System.out.print("Color = " + color);
}
}

class Apple extends Fruit
{
public static void main(String [] args) 
{
Apple m = new Apple();
}
}

Select 1 correct answer:
A. A new Apple object is created.
B. Run time error in main.
C. The code compiles but no object is created.
D. Compile time error in main. No matching constructor is found.