JAVA Strings What will be output?String S1 = "S1 ="+ "123"+"456";String S2 = "S2 ="+(123+456); None of This S1=579,S2=579 S1=123456,S2=123456 S1=123456, S2=579 None of This S1=579,S2=579 S1=123456,S2=123456 S1=123456, S2=579 ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings The class string belongs to ................. package. java.lang java.string java.awt java.applet java.lang java.string java.awt java.applet 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 k are replaced by a. The first occurrence of k is replaced by a. All characters a are replaced by k. Displays error message All characters k are replaced by a. The first occurrence of k is replaced by a. All characters a are replaced by k. 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); } } 123 Compilation error abc Runtime exception thrown 123 Compilation error abc Runtime exception thrown ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings The String method compareTo() returns an int value 1 false -1 true an int value 1 false -1 true ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings What will be the output?String str1 = "abcde";System.out.println(str1.substring(1, 3)); abc None of these bcd abcd bc abc None of these bcd abcd bc ANSWER DOWNLOAD EXAMIANS APP