Hello, is that service center? The elevator of our apartment doesn't work.()A. Oh, I don't know what's wrong with it.B. Sorry,I'll have it checked out at once.C. OK, I see.

题目

Hello, is that service center? The elevator of our apartment doesn't work.()

A. Oh, I don't know what's wrong with it.

B. Sorry,I'll have it checked out at once.

C. OK, I see.


相似考题
参考答案和解析

参考答案:B

更多“Hello, is that service center? The elevator of our apartment doesn't work.()A. Oh, ”相关问题
  • 第1题:

    Between labor and play______(stand)work.


    正确答案:
     stands[解析] between…and…两者之间,故用第三人称单数。

  • 第2题:

    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也是正确的。

  • 第3题:

    Peter: Hello, Frank!______?

    Frank. Pretty good. Oh, Frank, how are you doing with your assignment?


    正确答案:A

  • 第4题:

    — Hello, Sally. How’s everything? —().

    A、Good for you

    B、Oh, I agree

    C、That’s right

    D、Just so-so


    参考答案:D

  • 第5题:

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

    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)。

  • 第6题:

    Which of the following shows the proper rhythmical pattern of the sentence?

    A.′Come to ′see us at our ′new a′partment.
    B.′Come to ′see us at′our new ′apartment.
    C.′Come to ′see us ′at our ′new ′apartment.
    D.′Come to ′see us ′at our ′new a′partment.

    答案:A
    解析:
    考查句子重读。一般来说,句子中的实词需要重读,比如名词、动词、形容词、副词、数词等。虚词多数情况下不重读,比如冠词、介词、物主代词(形容词性)、连词、感叹词等。故A项正确。