给定下列程序:public class Test{public static void main(String args[]){String str=new String("World");char ch[]={'C','e','l','l','o'};change(str,ch);System.out.println(str+"and"+ch);} public static void change(String str,char ch[]){str="Changed";ch[0]='H';
A. World and Cello
B. World and Hello
Changed and Hello
D. Changed and Cello