JAVA Strings The class string belongs to ................. package. java.lang java.awt java.applet java.string java.lang java.awt java.applet java.string ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings What will be output?String S1 = "S1 ="+ "123"+"456";String S2 = "S2 ="+(123+456); S1=579,S2=579 S1=123456,S2=123456 S1=123456, S2=579 None of This S1=579,S2=579 S1=123456,S2=123456 S1=123456, S2=579 None of This 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)); }} one two None of these onetwo twoone one two None of these onetwo twoone ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings How many Constructor String class have? None of this 11 2 13 7 None of this 11 2 13 7 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 s1 = "java";String s2 = "java";System.out.println(s1.equals(s2));System.out.println(s1 == s2); }} true true false false true false false true true true false false true false false true 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"; 3 4 2 None of this 3 4 2 None of this ANSWER DOWNLOAD EXAMIANS APP