Kizspy Question: 33
(Choose 1 answer)
What is the output following the code snippet?
class Static Test {
}
static void static Method() {
System.out.println("Static Method");
public class Main {
public static void main(String[] args) {
Static Test first = null;
first.staticMethod();
A. Static Method
B. Throws a NullPointerException
C. null
D. None of the others