What will be the ouput of the following code snippet? String myString1 = "Hello World!"; myString1.replace('e', 'o'); System.out.println(myString1);
Hallo World!
Hello World!
Compile time error
NullPointerException