Read this piece of code carefully
if("
String ".trim() == "String")
System.out.println("Equal");
else
System.out.println("Not Equal");
Answers
1.the code will compile an print "Equal".
2.the code will compile an print "Not Equal".
3.the code will cause a compiler error
prints 3. "Not Equal"??
-Arun
