GIAC GSSP-Java Question Answer
What will happen when you try to compile and execute the following code?
class strconcat {public static void main(String args[])
{String str =" Correct answers";String perc ="a"+"b";System.out.println(80+ '%' + str);}}
Note. The ASCII value of % is 37.