JAVA Strings The String method compareTo() returns false -1 true 1 an int value false -1 true 1 an int value ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings How many objects will be created?String a = new String("Examveda");String b = new String("Examveda");String c = "Examveda";String d = "Examveda"; 4 3 2 None of this 4 3 2 None of this 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); } } Compilation error None of these Throws an exception as string and int are not compatible for addition 9hellow hellow9 Compilation error None of these Throws an exception as string and int are not compatible for addition 9hellow hellow9 ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings String str1 = "Kolkata".replace('k', 'a');In the above statement, the effect on string Kolkata is 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. All characters k are replaced by a. Displays error message 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"); } }} "1" is printed. An exception is thrown at runtime. "2" is printed. "3" is printed. Compilation fails. "1" is printed. An exception is thrown at runtime. "2" is printed. "3" is printed. Compilation fails. ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings The class string belongs to ................. package. java.awt java.string java.lang java.applet java.awt java.string java.lang java.applet ANSWER DOWNLOAD EXAMIANS APP