
public class Example5_4 {
    public static void main(String[] args)
    {
    	String s = "Program";
    	testMethod(s);
    	System.out.println("s = " + s);
    }
    //*************
    public static void testMethod(String s1)
    {
    	s1 = s1 + "hello";
    }
}
