JAVA Strings The class string belongs to ................. package. java.lang java.applet java.awt java.string java.lang java.applet java.awt java.string ANSWER DOWNLOAD EXAMIANS APP
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 abc Runtime exception thrown 123 Compilation error ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings String str1 = "Kolkata".replace('k', 'a');In the above statement, the effect on string Kolkata is Displays error message All characters a are replaced by k. All characters k are replaced by a. The first occurrence of k is replaced by a. Displays error message All characters a are replaced by k. All characters k are replaced by a. The first occurrence of k is replaced by a. ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings What will be the output?String str1 = "abcde";System.out.println(str1.substring(1, 3)); bc abcd abc bcd None of these bc abcd abc bcd None of these ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings What will be the output of the following program?public class Test{ public static void main(String args[]){String str1 = "one";String str2 = "two";System.out.println(str1.concat(str2)); }} two twoone onetwo one None of these two twoone onetwo one None of these ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings What could be output of the following fragment of code?public class Test{ public static void main(String args[]){ String x = "hellow";int y = 9;System.out.println(x += y); } } 9hellow Compilation error hellow9 Throws an exception as string and int are not compatible for addition None of these 9hellow Compilation error hellow9 Throws an exception as string and int are not compatible for addition None of these ANSWER DOWNLOAD EXAMIANS APP