【单选题】【消耗次数:1】
Clara: Do you mind waiting outside for a moment?Steve: __________
Yes, please.
I sure do.
I guess so.
Not at all.
参考答案:
复制
纠错
相关题目
【单选题】 Do you mind if I join you?
①  I’m very happy to do so
②  Never mind
③  Please do
④  Oh, I can’t
【单选题】 --Do you dance? --Yes, I do.--________?--Every weekend.
①  :How hard do you practice
②  :How much do you pay for it
③  :How often do you go dancing
④  :How long do you practice it
【单选题】 —Do you mind if Charlie borrows a few hundred dollars from you?—Im afraid I do. Ill be glad to lend money to _____ but Charlie.
①  someone
②  everyone
③  anyone
④  no one
【单选题】 Do you mind if I take a couple of hours off this afternoon?
①  Never mind
②  OK, but what for?
③  Yes, please help yourself
④  Yes, but I don’t care
【单选题】 —I’m sorry to keep you waiting. —Oh, not at all. I___ here only a few minutes.
①  have been
②  had been
③  was
④  will be
【单选题】 A: Are you ready for the test tomorrow? B: [填空] A: Come on, I am sure you will do well.
①  Why do you ask?
②  No. Im afraid not.
③  Sure, no problem.
④  What about you?
【判断题】 A: Dont you think this colour is too dark? B: Yes, I think so.
①  正确
②  错误
【单选题】 1.-It’s rather cold in here. Do you mind if I close the window? -_____________________.
①  Yes, please
②  No, go ahead
③  Sure, please
④  yes
【判断题】 A: Do you mind if I take three days off this week? B: Never mind.
①  正确
②  错误
【判断题】 I will help you do it. = I will help you to do it.
①  正确
②  错误
随机题目
【单选题】 设置虚基类的目的是()
①  简化程序
②  消除二义性
③  提高运行效率
④  减少目标代码
【单选题】 C++语言建立类族是通过()
①  类的嵌套
②  类的继承
③  虚函数
④  抽象类
【单选题】 this指针存在的目的是()
①  保证基类私有成员在子类中可以被访问
②  保证基类保护成员在子类中可以被访问
③  保证每个对象拥有自己的数据成员,但共享处理这些数据成员的代码
④  保证基类公有成员在子类中可以被访问
【单选题】 下列说法中错误的是( )
①  公有继承时基类中的public成员在派生类中仍是public的
②  公有继承时基类中的private成员在派生类中仍是private的
③  私有继承时基类中的public成员在派生类中是private的
④  保护继承时基类中的public成员在派生类中是protected的
【单选题】 在C++中的类有两种用法:一种是类的实例化,即生成类的对象,并参与系统的运行;另一种是通过(),派生出新的类。
①  复用
②  继承
③  单继承
④  多继承
【单选题】 类的私有成员可在何处访问( )
①  通过子类的对象访问
②  本类及子类的成员函数中
③  通过该类对象访问
④  本类的成员函数中
【单选题】 所谓多态性是指 ()
①  不同的对象调用不同名称的函数
②  不同的对象调用相同名称的函数
③  一个对象调用不同名称的函数
④  一个对象调用不同名称的对象
【单选题】 在C++中类之间的继承关系具有
①  自反性
②  对称性
③  传递性
④  反对称性
【单选题】 在多继承中,公有派生和私有派生对于基类成员在派生类中的可访问性与单继承的规则()。
①  完全相同
②  完全不同
③  部分相同,部分不同
④  以上都不对
【单选题】 类B是类A的公有派生类,类A和类B中都定义了虚函数func(),p是一个指向类A对象的指针,则p->A::func()将()
①  调用类A中的函数func()
②  调用类B中的函数func()
③  根据p所指的对象类型而确定调用类A中或类B中的函数func()
④  既调用类A中函数,也调用类B中的函数