(Choose 1 answer)
public class Sandys{
What will happen when you attempt to compile and run the following code?
private int court;
public static void main(String argv[]){Sandys s = new Sandys(99);
System.out.println(s.court);
}
Sandys (int ballcount){court-ballcount;
}
A. Compile time error, the variable court is defined as private
B. Compile time error, s is not initialized when the System.out method is called
C. Compilation and execution with no output
D. Compilation and run with an output of 99
{
Exit 32