output of system. out. printIn ("Nine"+5+4) ;
Answers
Answered by
0
Answer:
"Nine54"
Explanation:
1. In Java, an expression is evaluated from left to right
2. String + any Datatype is evaluated like a string append expression, hence the string value of the datatype is used to append to the original expression.
For eg:
5+4+"Nine" = 9Nine
Similar questions