JAVA Strings How many objects will be created?String a = new String("Examveda");String b = new String("Examveda");String c = "Examveda";String d = "Examveda"; 3 4 None of this 2 3 4 None of this 2 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 Compilation error 123 Runtime exception thrown abc Compilation error 123 Runtime exception thrown ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings What will be the output?String str1 = "abcde";System.out.println(str1.substring(1, 3)); None of these bcd abcd bc abc None of these bcd abcd bc abc ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings What will be output?String S1 = "S1 ="+ "123"+"456";String S2 = "S2 ="+(123+456); S1=123456, S2=579 S1=123456,S2=123456 None of This S1=579,S2=579 S1=123456, S2=579 S1=123456,S2=123456 None of This S1=579,S2=579 ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings The String method compareTo() returns -1 false true an int value 1 -1 false true an int value 1 ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings What will be the output of the following program code?class LogicalCompare{ public static void main(String args[]){ String str1 = new String("OKAY"); String str2 = new String(str1); System.out.println(str1 == str2); }} Displays error message 0 false 1 true Displays error message 0 false 1 true ANSWER DOWNLOAD EXAMIANS APP