OD
(Choose 1 answer)
Find the output of the below program?
public class Main {
public static void main(String[] args) { String str = "ab1c2d33e";String[] tokens = str.split("\\d+");for(Strings: tokens){System.out.print(s);
}
}
A. abcde
B. 1233
C. Runtime exception thrown
D. Compilation error
Exit 10