单选题‘hello’.replace(‘o’,‘l’)的返回值()A‘helll’B‘heooo’C‘helol’D‘heolo’
单选题
‘hello’.replace(‘o’,‘l’)的返回值()
A
‘helll’
B
‘heooo’
C
‘helol’
D
‘heolo’
参考解析
解析:
暂无解析
相关考题:
假设有以下代码: String s="hello"; String t="hello"; char c[ ]={'h','e','l','l','o'}; 下列选项中,返回false的语句是______。A.s.equals(t);B.t.equals(c);C.s==t;D.t.equals(new String("hello"));
Strings=hello;Stringt=hello;charc[]={’h’,’e’,’l’,’l’,’o’};Whichreturntrue?() A.s.equals(t);B.t.equals(c);C.s==t;D.t.equals(newString(hello));E.t==c;
Whichexpressionswillevaluatetotrueifprecededbythefollowingcode?()Stringa=hello;Stringb=newString(a);Stringc=a;char[]d={’h’,’e’,’l’,’l’,’o’}; A.(a==Hello)B.(a==b)C.(a==c)D.a.equals(b)E.a.equals(d)
不能把字符串"Hello!"赋给数组b的语句是______。A.char b[10]={'H', 'e',' l',' l', 'o','!'};B.char b[10]={'h', 'e', 'l', 'l', 'o','!'};C.char b[10];strcpy (b, "Hello!"};D.char b[10]="Hello!";
下面不正确的字符赋值或赋初值的方式为()。A.chars[10]=”hello!”B.chars[10]={‘h’,‘e’,‘l’,‘l’,‘o’,‘!’}C.chars[10];s=”hello”D.char[]=”hello!”
不能把字符串:Hello!赋给数组b的语句是( )。A.char b[10]={’H’,’e’,’l’,’l’,’o’,’!’};B.char b[10]; b="Hello!";C.char b[10]; strcpy(b,"Hello!");D.char b[10]="Hello!";
不能把字符串“Hello!”赋给数组b的语句是________。A.char b[10]={'H','e','1','l','o','!'};B.chsr b[10]={'h','e','1','1','o','!'};C.char b[10];strcpy(b,"Hello!");D.chgr b[10]="Hello!";
在C语言中,利用数组a存放字符串“Hello”,以下语句中正确的是()。Achara[10]=“Hello”;Bchara[10];a=“Hello”;Cchara[10]=‘Hello’;Dchara[10]={‘H’,’e’,’l’,’l’,’o’};
Which expressions will evaluate to true if preceded by the following code?() String a = "hello"; String b = new String(a); String c = a; char[] d = { ’h’, ’e’, ’l’, ’l’, ’o’ }; A、(a == "Hello")B、(a == b)C、(a == c)D、a.equals(b)E、a.equals(d)
不能把字符串“Hello!”赋给数组b的语句是()A、char b[10]={’H’,’e’,’l’,’l’,’o’,’!’};B、char b[10];b="Hello!";C、char b[10];strcpy(b,"Hello!");D、char b[10]="Hello!";
String s= "hello"; String t = "hello"; char c[] = {’h’,’e’,’l’,’l’,’o’} ; Which return true?() A、 s.equals(t);B、 t.equals(c);C、 s==t;D、 t.equals(new String("hello"));E、 t==c;
多选题String s= "hello"; String t = "hello"; char c[] = {’h’,’e’,’l’,’l’,’o’} ; Which return true?()As.equals(t);Bt.equals(c);Cs==t;Dt.equals(new String(hello));Et==c;
单选题Sql server提供了一些字符串函数,以下说法错误的是()。Aselec tright(’hello’,3)返回值为:helBselec tltrim(rtrim(’hello’))返回值为:hello(前后都无空格)Cselec treplace(’hello’,’e’,’o’)返回值为:holloDselec tlen(’hello’)返回值为:5
单选题SQL server提供了一些字符串函数,以下说法错误的是()。Aselectright(’hello’,3)返回值为:helBselectltrim(rtrim(’hello’))返回值为:hello(前后都无空格)Cselectreplace(’hello’,’e’,’o’)返回值为:holloDselectlen(’hello’)返回值为:5
单选题为了能调试hello.c程序需要在编译程序时将调试信息加入到可执行文件中,则执行()Agcc–o hello hello.cBgcc–g hello.c–o helloCgcc hello.cDgcc–b hello.c–o hello
单选题在C语言中,利用数组a存放字符串“Hello”,以下语句中正确的是()。Achara[10]=“Hello”;Bchara[10];a=“Hello”;Cchara[10]=‘Hello’;Dchara[10]={‘H’,’e’,’l’,’l’,’o’};
多选题Which expressions will evaluate to true if preceded by the following code?() String a = "hello"; String b = new String(a); String c = a; char[] d = { ’h’, ’e’, ’l’, ’l’, ’o’ };A(a == Hello)B(a == b)C(a == c)Da.equals(b)Ea.equals(d)
填空题表达式’hello world,hello wevery one’.replace(’hello’,’hi’)的值为()。