java.lang

Question 1 of 10

Select the appropriate output.
public class Hello {
         public static void main(String[ ] args) {
                  String s = new String("Hello");
                  s.replace( ' H ' , ' j ' );

                  System.out.print(s);
         }
}