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;

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;


相关考题:

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

给出下面的代码,则以下( )选项返回true。 String s="hello"; String t="hello"; Char c[]={'h','e','l','l','o'};A.s. equals (t) ;B.t. equals (C);C.s==t;D.t==c;

用人的目的是quot;激活quot;人,而非quot;管住quot;quot;管死quot;人。要做到人尽其才,必须鼓励竞争,优胜劣汰。( ) 此题为判断题(对,错)。

在PowerPoint 2003中,删除幻灯片的操作可以是()。A.单击常用工具栏中的quot粘贴quot按钮B.选择quot编辑quot菜单中的quot删除幻灯片quot选项C.选择quot编辑quot菜单中的quot清除quot选项D.单击常用工具栏中的quot复制quot按钮

在PowerPoint 2003启动幻灯片放映的操作中,错误的是()。A.单击演示文稿窗口左下角的quot幻灯片放映quot视图按钮B.选择quot幻灯片放映quot菜单中的quot观看放映quot命令C.选择quot幻灯片放映quot菜单中的quot幻灯片放映quot命令D.按F5键

给出下列的代码,则以下哪个选项返回true? String s="hello"; String t="hello"; char c []= {'h','e','1','1','o'};A)s.equals(t);A.t. equals(B.;C.s==t;D.t==c;

给出下列的代码则以下哪个选项返回true? String s = "hello" ; String s = "hello" ; char c[] = { 'h' ,'e','l','o'};A.s.equals(t);B.t.equals(c);C.s = =tD.t = = c;

给出下列的代码,则以下( )选项返回true。 String s="hello"; String t="hello": char c[]={'h','e','l','l','o',};A.s.equals(t);B.t.equals(c);C.s==t;D.t==c;

下面这些代码的功能是创建一个string对象 s,并将其内容设置为字符串 alohaworld ,正确的有:A.string s{'alohaworld'};B.string s = string{"alohaworld"};C.char* p = "alohaworld"; string s(p);D.string s{'a','l','o','h','a','w','o','r','l','d'};E.string s('a','l','o','h','a','w','o','r','l','d');