JAVA Strings The class string belongs to ................. package. java.string java.lang java.awt java.applet java.string java.lang 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 All characters k are replaced by a. Displays error message The first occurrence of k is replaced by a. All characters a are replaced by k. All characters k are replaced by a. Displays error message 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 output?String S1 = "S1 ="+ "123"+"456";String S2 = "S2 ="+(123+456); S1=579,S2=579 None of This S1=123456, S2=579 S1=123456,S2=123456 S1=579,S2=579 None of This S1=123456, S2=579 S1=123456,S2=123456 ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings Determine output:public class Test{ public static void main(String args[]){ String str = null; if(str.length() == 0){ System.out.print("1"); } else if(str == null){ System.out.print("2"); } else{ System.out.print("3"); } }} "2" is printed. "3" is printed. An exception is thrown at runtime. "1" is printed. Compilation fails. "2" is printed. "3" is printed. An exception is thrown at runtime. "1" is printed. Compilation fails. ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings What is the output of the following println statement?String str1 = "Hellow";System.out.println(str1.indexOf('t')); true 1 0 false -1 true 1 0 false -1 ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings Determine output:public class Test{ public static void main(String args[]){ String s1 = "SITHA";String s2 = "RAMA";System.out.println(s1.charAt(0) > s2.charAt(0)); }} true 0 Compilation error Throws Exception false true 0 Compilation error Throws Exception false ANSWER DOWNLOAD EXAMIANS APP