Woman:Hello,Mr.Johnson′s office.

题目
Woman:Hello,Mr.Johnson′s office.
Man:Good morning.56?
Woman:Sorry,he′s in a meeting at the moment.57?
Man:Yes.This is Steve Lee from Brightlight Systems.58?
Woman:Tomorrow afternoon in your office.
Man:59.
Woman:Okay.60.
Man:Thank you.

第56题的答案是()

A.Can I speak to Mr.Johnson,please
B.I′ll tell him you′ve called
C.I′ll give him the message
D.What can I do for you
E.Can you tell him that we can meet tomorrow afternoon in my office
F.Can I take a message
G.Can you ask him to call me back as soon as possible
H.That′s right
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

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;


参考答案:A, C, D
这个在前面第10题的equals()方法和==操作符的讨论中论述过。==操作符比较的是操作符两端的操作数是否是同一个对象,而String的equals()方法比较的是两个String对象的内容是否一样,其参数是一个String对象时才有可能返回true,其它对象都返回假。需要指出的是由于s和t并非使用new创建的,他们指向内存池中的同一个字符串常量,因此其地址实际上是相同的(这个可以从反编译一个简单的测试程序的结果得到,限于篇幅不列出测试代码和反编译的分析),因此答案c也是正确的。

第2题:

下列的哪个程序段可能导致错误? ( )

A.String s="hello"; String t="good"; String k=s+t;

B.String s="hello"; String t; t=s[3]+"one";

C.String s="hello"; String standard=s.toUpperCase();

D.String s="hello"; String t=s+"good";


正确答案:B

第3题:

The woman and her husband______ in the same office.

A: works

B: working

C: work

D: has worked


正确答案: C

第4题:

有以下程序

#include<stdio.h>

void fun(char*c)

{while(*C)

{if(*c>=‘a’&&*c<=‘z’) *c=*c一(‘a’一‘A’);

C++;

}

}

main()

{char s[81];

gets(s);fun(s);puts(s);

}

当执行程序时从键盘上输入Hello Beijing<回车>,则程序的输出结果是

A.hello beijing

B.Hello Beijing

C.HELLO BEIJING

D.hELLO Beijing


正确答案:C
解析:函数fun的功能为将字符串中的小写字母转换为对应的大写母,故若从键盘上输入HelloBejing则输出为HELLOBEJING.

第5题:

以下选项中正确的语句组是( )。

A.char s[]; s="HELLO!";

B.char *s; s={"HELLO!"};

C.char s[10]; s="HELLO!";

D.char *s; s="HELLO!";


正确答案:D

第6题:

以下选项中正确的语句组是( )。

A)char s[];s="HELLO!";

B)char*s;s={"HELLO!"};

C)char s[10];s="HELLO!";

D)char *s;s="HELLO!";


正确答案:D
本题考查数组和字符串的赋值。选项A)中数组s没有明确其大小就赋值是错误的。选项B)中不能有大括号,选项C)中的写法应该为{'H''E''L''L''O"!'}。

第7题:

下列哪个程序段可能导致错误?

A.String s="hello"; String t= "good"; String k=s+ t;

B.String s="hello"; String t; t=s[3]+"one";

C.String s="hello"; String standard=s. toUpperCase

D.String s="hello"; String t =s+ "good"


正确答案:B
解析:选项A)String类型可以直接使用“+”运算符进行连接运算。选项B)String是一种Object,而不是简单的字符数组,不能使用下标运算符取其值的某个元素,错误。选项C)toUpperCase()方法是String对象的一个方法,作用是将字符串的内容全部转换为大写并返回转换后的结果(String类型)。选项D)同选项A)。

第8题:

有以下程序 #include<stdio.h> void fun(char*c) {while(*c) {if(*c>=a*c<=z)*c=*c=(’a’-’A’) c++; } } main( ) {char s[81]; gets(s);fun(;)puts(s); 当执行程序时从键盘输入Hello Beijing<回车>,则程序的输出结果是( )。

A.hello beijing

B.Hello Beijing

C.HELLO BEIJING

D.hELLO Beijing


正确答案:C
此程序是进行将小写字母变成大写操作,所以答案为C。

第9题:

写出程序运行的结果

Public class Base

Public virtual string Hello() {return “Base”;}

Public class Sub:Base

Public override string Hello() {return “Sub”;}

1. Base b = new Base(); b.Hello;

2. Sub s = new Sub(); s.Hello;

3. Base b = new Sub (); b.Hello;

4. Sub s = new Base(); s.Hello;


正确答案:
 

第10题:

有以下程序

#include

void fun(char *c)

{ while(*c)

{ if(*c>='a'&&*c<='z') *c=*c-('a'-'A');

c++;

}

}

main()

{ char s[81];

gets(s); fun(s); puts(s):

}

当执行程序时从键盘上输入Hello Beijing<回车>,则程序的输出结果是

A.hello beijing

B.Hello Beijing

C.HELLO BEIJING

D.hELLO Beijing


正确答案:C

更多相关问题