JAVA Strings How many Constructor String class have? 7 13 11 None of this 2 7 13 11 None of this 2 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=579 S1=123456,S2=123456 None of This S1=579,S2=579 S1=123456, S2=579 S1=123456,S2=123456 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 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)); }} None of these false,true true,true true,false false,false None of these false,true true,true true,false false,false ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings The class string belongs to ................. package. java.lang java.applet java.awt java.string java.lang java.applet java.awt java.string ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings The String method compareTo() returns -1 false 1 true an int value -1 false 1 true an int value ANSWER DOWNLOAD EXAMIANS APP