The result of this code:
public class Test {
    public static void main(String[] args) {
        String s = "Java";
        s.concat(" SE 6");
        s.replace('6', '7');
        System.out.print(s);
    }
}
will be "Java"
Who can tell me how many instances of String will be created during execution?
 
    