11. String test= “a1b2c3”; <br /> 12. String[] tokens = test.split(”\\d”); <br /> 13. for(String s: tokens) System.out.print(s +“ “); <br /> What is the result?() <p> 11. String test= “a1b2c3”; <br /> 12. String[] tokens = test.split(”\\d”); <br /> 13. for(String s: tokens) System.out.print(s +“ “); <br /> What is the result?() </p>
A、A. a b c
B、B. 1 2 3
C、C. a1b2c3
D、D. a1 b2 c3
E、E. Compilation fails.
F、F. The code runs with no output.
H、G. An exception is thrown at runtime.