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

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

ANSWER DOWNLOAD EXAMIANS APP