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 None of this 2 4 3 None of this 2 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?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 123 Compilation error Runtime exception thrown abc 123 Compilation error Runtime exception thrown ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings The output of the following fraction of code ispublic class Test{ public static void main(String args[]){ String s1 = new String("Hello");String s2 = new String("Hellow");System.out.println(s1 = s2);}} Throws an exception None of these Hellow Compilation error Hello Throws an exception None of these Hellow Compilation error Hello ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings What will be the output of the following program code?public class Test{ public static void main(String args[]){ String s = "what"; StringBuffer sb = new StringBuffer("what"); System.out.print(sb.equals(s)+","+s.equals(sb)); }} true,false false,false true,true None of these false,true true,false false,false true,true None of these false,true ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings toString() method is defined in None of these java.lang.Object java.lang.util java.lang.String None of these java.lang.Object java.lang.util java.lang.String ANSWER DOWNLOAD EXAMIANS APP