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)); }}

true,false
false,false
None of these
true,true
false,true

ANSWER DOWNLOAD EXAMIANS APP