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 false
false false
true true
false true

ANSWER DOWNLOAD EXAMIANS APP