Which of the following statements will compile without any error?
Select 4 options
Correct Options are : A B C D
+ is overloaded such that if any one of its two operands is a String then it will convert the other operand to a String and create a new string by concatenating the two.
In 63+"a" and "a"+63, 63 is converted to "63" and 'b' +"a" and "a"+'b', 'b' is converted to "b".
In 'b'+ 63 , 'b' is promoted to an int i.e. 98 giving 161.