String s = "India";String s2 = s;s.concat (” is a nation.”);System.out.println(s);
India
India is a nation.
is a nation.
None of the above.