JAVA Strings
What could be output of the following fragment of code?public class Test{ public static void main(String args[]){ String x = "hellow";int y = 9;System.out.println(x += y); } }

9hellow
hellow9
Throws an exception as string and int are not compatible for addition
Compilation error
None of these

ANSWER DOWNLOAD EXAMIANS APP