what is the output of the following?
public class ExampleClass {
int counter;
static int staticCounter = 100;
public static void main(String[] args) {
ExampleClass example = new ExampleClass();
System.out.println("Instance counter: " + example.counter);
System.out.println("Static counter: " + ExampleClass.staticCounter);
}
}