JAVA Strings
What will be the output?public class Test{ public static void main (String[] args){ String test = "a1b2c3"; String[] tokens = test.split("\\d"); for(String s: tokens) System.out.print(s); } }

123
abc
Compilation error
Runtime exception thrown

ANSWER DOWNLOAD EXAMIANS APP