What will be the output of the following code?
class Example {
static void staticMethod() {
System.out.println("Static Method");
}
}
public class Test {
public static void main(String[] args) {
Example.staticMethod();
}
}