1Z0-830 Web TestEngine demo

Exit VCEDump 1Z0-830 Java SE 21 Developer Professional
Question 10 of 15
0% complete
Q10 Single choice

What do the following print?

java
public class Main {

int instanceVar = staticVar;

static int staticVar = 666;

public static void main(String args[]) {

System.out.printf("%d %d", new Main().instanceVar, staticVar);

}

static {

staticVar = 42;

}

}

Sign in to mark questions

Sign in to save marked questions and return to this demo.

Sign in