What does this statement print?

System.out.println("bc" + 2 + 3)

5 answers

if math is done before concatenation,, then bc5
If string ops are done first, then bc23
bc23
bc23
bc+5
Bc23