JAVA Strings What is the output of the following println statement?String str1 = "Hellow";System.out.println(str1.indexOf('t')); -1 0 true false 1 -1 0 true false 1 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 false true true false true true false false false true true false ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings How many Constructor String class have? 11 None of this 13 7 2 11 None of this 13 7 2 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"; 2 3 4 None of this 2 3 4 None of this 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); } } 123 abc Runtime exception thrown Compilation error 123 abc Runtime exception thrown Compilation error ANSWER DOWNLOAD EXAMIANS APP
JAVA Strings Determine output:public class Test{ public static void main(String args[]){ String s1 = "SITHA";String s2 = "RAMA";System.out.println(s1.charAt(0) > s2.charAt(0)); }} Compilation error true Throws Exception false 0 Compilation error true Throws Exception false 0 ANSWER DOWNLOAD EXAMIANS APP