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

Hellow
None of these
Hello
Compilation error
Throws an exception

ANSWER DOWNLOAD EXAMIANS APP