JAVA Strings How many objects will be created?String a = new String("Examveda");String b = new String("Examveda");String c = "Examveda";String d = "Examveda"; None of this 3 2 4 None of this 3 2 4 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); }} false 0 1 true Displays error message false 0 1 true Displays error message ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings What will be the output of the following program?public class Test{ public static void main(String args[]){String str1 = "one";String str2 = "two";System.out.println(str1.concat(str2)); }} onetwo None of these one two twoone onetwo None of these one two twoone ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings What will be the output?String str1 = "abcde";System.out.println(str1.substring(1, 3)); abc bc abcd None of these bcd abc bc abcd None of these bcd 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
JAVA Strings What will be output?String S1 = "S1 ="+ "123"+"456";String S2 = "S2 ="+(123+456); S1=123456,S2=123456 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 ANSWER DOWNLOAD EXAMIANS APP