OD
(Choose 1 answer)
A. Line 12 will not compile because you can only have one static initializer.
B. The code compiles and execution produces the output x = 3.
C. The code compiles and execution produces the output x = 10.
D. Lines 5 and 12 will not compile because the method names and return types are missing.
E. The code compiles and execution produces the output x = 15.
Which statement is true about this application?
1. class StaticStuff
2345678
{
static int x = 10;
static {x += 5; }
public static void main(String args[]){
9.System.out.println("x = " + x);
10. }
11.
12. static {x/= 5; }
13.}