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