单选题语句"Hello".equals("hello")的正确执行结果是()AtrueBfalseC0D1

单选题
语句"Hello".equals("hello")的正确执行结果是()
A

true

B

false

C

0

D

1


参考解析

解析: 暂无解析

相关考题:

假设有以下代码: 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"));

语句“Hello”. equals(“hello”);的正确执行结果是______。A) trueB) falseC) 0D) 1A.B.C.D.

下列实现C语言语句printf("Hello!")的相同功能的语句是( )。A.cout>>"Hello!"B.cin>>"Hello!"C.cout<<"Hello!"D.cin<<"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)

以下选项中正确的语句组是( )。A)char s[];s="HELLO!";B)char*s;s={"HELLO!"};C)char s[10];s="HELLO!";D)char *s;s="HELLO!";

下列代码的执行结果是()。publicclasstest5{publicstaticvoidmain(Stringargs[]){Strings1=newString("hello");Strings2=newString("hello");System.out.prim(s1==s2);System.out.print(",");System.out.println(s1.equals(s2));}A.true,falseB.true,trueC.false,trueD.false,false

当输入为″hello?″时,下面程序的执行结果是( )。A.RvfsuB.hC.?D.hello

有以下程序:当执行程序时从键盘上输入Hello Beijing<回车>,则程序运行后的输出结果是( )。A.hello bajiIlgB.Hello BeijingC.HELLO BEIJINGD.hELLO Beijing

语句”Hello”.equals(”hello”);的正确执行结果是( )。A.trueB.falseC.0SXB 语句”Hello”.equals(”hello”);的正确执行结果是( )。A.trueB.falseC.0D.1

在C++语言中输出“Hello World”的语句是()。A.cout>"Hello World";C.cin 在C++语言中输出“Hello World”的语句是( )。A.cout<<"Hello World";B.cout>>"Hello World";C.cin<<"Hello World";D.cin>>"Hello World";

语句"Hell0".equals("hell0");的正确执行结果是( )。 A.trueB.falseC.0SXB 语句"Hell0".equals("hell0");的正确执行结果是( )。A.trueB.falseC.0D.1

设char str1[11]="HELLO,",str2[10]=“world”;则执行语句cout 设char str1[11]="HELLO,",str2[10]=“world”;则执行语句 cout<<strlen(strcpy(str1,str2)));后的输出结果是 ______。A.12B.11C.7D.5

向页面输出Hello World的JavaScript语句是( )。 A.printf(Hello WorldHello World的JavaScript语句是( )。A.printf(Hello World) B.document.write(Hello World)C.h4Hello World/h4 D.alert(Hello World)

语句 System.out.println(4+8+"Hello,world!"); 的输出结果是12Hello,world!。() 此题为判断题(对,错)。

语句 System.out.println("Hello,world!"+4+8);的输出结果是Hello,world!48。() 此题为判断题(对,错)。

执行语句“Write#1,234;-34.56,"hello";Date”后,相应文件内被写入()。A、"234","-34.56","hello","2001-08-03"B、234-34.56hello2001-08-03C、234,-34.56,hello,2001-08-03D、234,-34.56,"hello",#2001-08-03#

在PHP中,语句“echo’hello’+128”的输出结果是()。A、helloB、hello128C、0128D、128

语句"Hello".equals("hello")的正确执行结果是()A、trueB、falseC、0D、1

有以下程序: #include void main() {while(putchar(getchar())!=’?’);} 当输入"hello?"时,程序的执行结果是()A、helloB、dijobC、dijob?D、hello?

语句Print Format("HELLO","")的输出结果是()A、HELLOB、helloC、HeD、he

执行语句:PRINTLtrim(Rtrim(‘Hello,world’)))的结果是()。

语句PrintFormat(“Hello World”,“”)的输出结果是()。A、hello WORLDB、hello worldC、HELLO WORLDD、HELLO world

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;

填空题执行语句:PRINTLtrim(Rtrim(‘Hello,world’)))的结果是()。

多选题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;

单选题下列语句中,正确的是(  )。Achar*myString=“Hello-World!”;Bchar myString=“Hello-World!”;Cchar myString[11]=“Hello-World!”;Dchar myString[12]=“Hello-World!”;