JAVA Strings
The output of the following fraction of code ispublic class Test{ public static void main(String args[]){ String s1 = new String("Hello");String s2 = new String("Hellow");System.out.println(s1 = s2);}}

Compilation error
Hello
Throws an exception
Hellow
None of these

ANSWER DOWNLOAD EXAMIANS APP