【单选题】【消耗次数:1】
What do you think _____solve the problem ?
you can do
can you do
you can do to
can you do to
参考答案:
复制
纠错
相关题目
【单选题】 What can I do for you, madam?
①  I want a kilo of apples
②  You can go your own way
③  Thanks
④  Excuse me. I’m busy
【单选题】 —Hello there, what can I do for you, sir?—_____________________.
①  I can do it myself.
②  No, youre welcome.
③  I would like to buy a pair of glasses.
④  Yes, thank you.
【单选题】 You must think of [填空] you can do for your parents.
①  that
②  how
③  what
④  which
【单选题】 When you make a self-introduction, you can tell what you do for a ______________.
①  job
②  life
③  living
④  taste
【单选题】 A computer can only do____ you have instructed it to do.
①  how
②  after
③  what
④  when
【单选题】 A: Is there anything I can do for you? B: [填空], there is something.
①  No, nothing
②  Well, now that you ask
③  Nothing I can think of
④  If you ask me
【判断题】 A: What can I do for you, sir? B: Nothing.
①  正确
②  错误
【单选题】 Woman: Bob, do you think you can lend me fifty dollars? Bob: Let me see. ____
①  You know I have no money at all.
②  Sorry, I don’t think I have much with me.
③  I don’t think you should do it.
④  Oh, I have quite a lot.
【单选题】 Susan: How do you do, Mrs. White.Mrs. White: How do you do, Susan. I’m glad you can join us. __________
①  Dont be shy.
②  Please feel natural.
③  Make yourself at home.
④  Feel all right here.
【单选题】 Susan: How do you do, Mrs. White.Mrs. White: How do you do, Susan. I’m glad you can join us. __________
①  Don’t be shy.
②  Please feel natural.
③  Make yourself at home.
④  Feel all right here.
随机题目
【单选题】 欲构造ArrayList类的一个实例,此类继承了List接口,下列哪个方法是正确的?( )
①  ArrayList myList=new Object();
②  List myList=new ArrayList();
③  ArrayList myList=new List();
④  List myList=new List();
【单选题】 下面关于方法的说法,不正确的是( ) 。
①  Java 中的构造方法名必须和类名相同
②  方法体是对方法的实现,包括变量声明和合法语句
③  如果一个类定义了构造方法,也可以用该类的默认构造方法
④  类的私有方法不能被其他类直接访问
【单选题】 以下对重载描述错误的是( )
①  方法重载只能发生在一个类的内部
②  构造方法不能重载
③  重载要求方法名相同,参数列表不同
④  方法的返回值类型不是区分方法重载的条件
【单选题】 编译一个定义了 3 个类和 10 个方法的 Java 源文件后,会产生( D )个字节码文件?扩展名是( )?
①  13 个字节码文件,扩展名为.class
②  1 个字节码文件,扩展名为.class
③  3 个字节码文件,扩展名为.java
④  3 个字节码文件,扩展名为.class
【单选题】 System.out.println(5 + 2);的输出结果应该是( )。
①  52
②  7
③  2
④  5
【单选题】 下列选项中,不属于 Java 语言特点的一项是( ) 。
①  分布式
②  安全性
③  编译执行
④  面向对象
【单选题】 以下对抽象类的描述正确的是( )
①  抽象类没有构造方法
②  抽象类必须提供抽象方法
③  有抽象方法的类一定是抽象类
④  抽象类可以通过new关键字直接实例化
【单选题】 下列哪个是合法的Java标识符?( )
①  Tree&Glasses
②  FirstJavaApplet
③  *theLastOne
④  273.5
【单选题】 若在某一个类定义中定义有如下的方法:abstract void performDial( );该方法属于( )。
①  接口方法
②  最终方法
③  抽象方法
④  空方法
【单选题】 以下说法错误的是( )
①  super.方法()可以调用父类的所有非私有方法
②  super()可以调用父类的所有非私有构造函数
③  super.属性可以调用父类的所有非私有属性
④  this和super关键字可以出现在同一个构造函数中