A.s.equals(t);
B.t.equals(c);
C.s==t;
D.t.equals(newString("hello"));
E.t==c;
第1题:
在PowerPoint 2003启动幻灯片放映的操作中,错误的是()。
A.单击演示文稿窗口左下角的quot幻灯片放映quot视图按钮
B.选择quot幻灯片放映quot菜单中的quot观看放映quot命令
C.选择quot幻灯片放映quot菜单中的quot幻灯片放映quot命令
D.按F5键
第2题:
给出下列的代码则以下哪个选项返回true? String s = "hello" ; String s = "hello" ; char c[] = { 'h' ,'e','l','o'};
A.s.equals(t);
B.t.equals(c);
C.s = =t
D.t = = c;
第3题:
下面这些代码的功能是创建一个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');
第4题:
给出下列的代码,则以下哪个选项返回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;
第5题:
给出下列的代码,则以下( )选项返回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;