In this statement, the expression "30 + 20" is enclosed in double quotes, making it a string literal.
Java treats it as plain text and does not evaluate the arithmetic operation inside the quotes.
Therefore, the output will be the string itself.
Output: 30 + 20
In this case, the string "Information Technology" is concatenated with the integer 802.
Java automatically converts the integer into a string and joins it with the preceding text.
This process is called string concatenation.
So, the result is a single string formed by joining both parts.
Output: Information Technology802