niusouti.com

There is something wrong with my TV set, I must have it ().A.checkingB.checkC.to checkD.checked

题目
There is something wrong with my TV set, I must have it ().

A.checking

B.check

C.to check

D.checked


相似考题
更多“There is something wrong with my TV set, I must have it (). ”相关问题
  • 第1题:

    --Are you going to attend the meeting?

    --I'm not sure, I ______ go for a business trip instead.

    A. would

    B. should

    C. might

    D. must


    正确答案:D

  • 第2题:

    Xiaoyan:So, I' d like to come and see the flat.

    Franca: Yes, when is convenient? How about during the day? I usually work in the

    evening.

    Xiaoyan; Well,I work during the day, but perhaps in the afternoon?

    Franca:Well, why don't you come at about 5 o'clock?

    Xiaoyan:That's a good idea.

    Franca; Are you free on Thursday?

    Xiaoyan: No, I'm afraid I'm not. We always have a meeting on Thursday. What about

    Wednesday?

    Franca:No, I' m sorry. I' m busy on Wednesday. I’m in Cambridge. Are you free on

    Friday?

    Xaaoyan:Yes,Friday is fine.

    Franca: Okay. See you on Friday at 5 o'clock at the flat.

    Xiaoyan;Thanks very much. Goodbye.

    Franca:Goodbye.

    1. Franca usually works during the day.

    A. Right

    B. Wrong

    2. It is convenient for both of them to meet in the afternoon.

    A. Right

    B. Wrong

    3.Xiaoyan is free on Wednesday.

    A. Right

    B. Wrong

    4. Franca is not free on Wednesday because he has a meeting.

    A. Right

    B. Wrong

    5. They are going to meet on Friday at the flat.

    A. Right

    B. Wrong


    参考答案B A A B A

  • 第3题:

    下列程序的输出结果是【 】。 includeclass MyClass{public: int number; void set(in

    下列程序的输出结果是【 】。

    include<iostream. h>

    class MyClass

    {

    public:

    int number;

    void set(int i);

    };

    int number=3;

    void MyClass: :set (int i)

    {

    number=i;

    }

    void main( )

    {

    MyClass my1;

    int number=10;

    my1.set(5),

    cout<<my1, number<<',';

    my1.set(number);

    cout<<my1.number<<',';

    my1.set(: :number);

    cout<<my1.number<<'.';

    }


    正确答案:5103
    5,10,3 解析:本题考查全局变量,局部变量和类的数据成员之间的使用上的差别。使用全局变量时需要用域作用符来限定该变量,否则编译器无法正确区分。

  • 第4题:

    9. _______you _______ stay at home today?

    A. Do ; have to

    B. Must; have to

    C. Have; to

    D. Do ; must


    正确答案:A
    9.A【解析】have to的疑问形式借助动词do来实现, must的疑问形式是将must提到主语之前,另外还需注意have to与must不能重复使用。故答案为A。

  • 第5题:

    I’m sure he ____not mind your going with me.

    A.shall

    B. can

    C.would

    D. must


    正确答案:C

  • 第6题:

    Java程序中读入用户输入的一个值,要求创建一个自定义的异常,如果输入值大于10,使用throw语句显式地引发异常,异常输出信息为“something’swrong!”,语句为()。

    A.if(I>10)throw Exception(“something’swrong!”);

    B.if(I>10)throw Exceptione(“something’swrong!”);

    C.if(I>10)thrownew Exception(“something’swrong!”);

    D.if(I>10)thrownew Exceptione(“something’swrong!”);


    正确答案:C