What is the output of the following code?
public void concatenation(){String a = Hello;a.concat(World);System.out.println(a);}
Reveal answer
Fill a bubble to check yourself
What is the output of the following code?
public void concatenation(){String a = Hello;a.concat(World);System.out.println(a);}