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); } }

abc
Runtime exception thrown
123
Compilation error

ANSWER DOWNLOAD EXAMIANS APP