Q43
What will be the output? public class Test public static void main (String[] args) String test = "a1b2c3"; String[] tokens = test.split("\ "); for(String s: tokens) System.out.print(s);
A.
abc
AnswerB.
123
C.
Runtime exception thrown
D.
Compilation error
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board