【单选题】【消耗次数:1】
I need some ( )to take the bus.
exchange
charge
tip
change
参考答案:
复制
纠错
相关题目
【判断题】 A: Must I take a taxi? B: No, you must not. You can take a bus.
①  正确
②  错误
【单选题】 “Which of these two ties will you take?” “I’ll take ____to give me a change sometimes.”?
①  either ?
②  both ?
③  neither ?
④  all?
【单选题】 We’ve missed the last bus, I’m afraid we have no _______ but to take a taxi.
①  way
②  choice
③  possibility
④  selection
【单选题】 We’ve missed the last bus. I’m afraid we have no ________ but to take a taxi.
①  way
②  choice
③  possibility
④  selection
【单选题】 _______ by bus is slow and difficult in some districts.
①  Travel
②  Journey
③  Trip
【单选题】 A: How long does it take to get to your house by bus? B: [填空]. I think the tube is your best choice. A: Many thanks.
①  I dont know yet
②  It depends on the traffic
③  Let me see
④  Youll consider the distance
【单选题】 A quarter is enough of a tip for taxi-drivers. Many airports, train or bus stations now ( ) a fixed 35C to carry each bag you have
①  spend
②  cost
③  charge
④  give
【判断题】 Please take some photoes for me.
①  正确
②  错误
【单选题】 I charge the man____ receiving stolen goods.
①  in
②  with
③  at
④  on
【判断题】 A: Need you go yet? B: Yes, I need.
①  正确
②  错误
随机题目
【单选题】 下列关于类的权限的描述错误的是( )
①  类本身的成员函数只能访问自身的私有成员
②  类的对象只能访问该类的公有成员
③  普通函数不能直接访问类的公有成员,必须通过对象访问
④  一个类可以将另一个类的对象作为成员
【单选题】 类的构造函数被自动调用执行的情况是在定义该类的()
①  成员函数时
②  数据成员时
③  对象时
④  友元函数时
【单选题】 在类中说明的成员可以使用关键字的是()
①  public
②  extern
③  cpu
④  register
【单选题】 int Func(int,int);不可与下列哪个函数构成重载( )
①  int Func(int,int,int);
②  double Func(int,int);
③  double Func(double,double);
④  double Func(int,double);
【单选题】 对类中声明的变量,下列描述中正确的是( )
①  属于全局变量
②  只属于该类
③  属于该类,某些情况下也可被该类不同实例所共享
④  任何情况下都可被该类所有实例共享
【单选题】 若Sample类中的一个成员函数说明如下:void set(Sample& a),则Sample& a的含义是()
①  指向类Sample的名为a的指针
②  a是类Sample的对象引用,用来作函数Set()的形参
③  将a的地址赋给变量Set
④  变量Sample与a按位与的结果作为函数Set的参数
【单选题】 下列的各类函数中,( )不是类的成员函数
①  构造函数
②  析构函数
③  友元函数
④  复制构造函数
【单选题】 如果没有为一个类定义任何构造函数的情况下,下列描述正确的是( )
①  编译器总是自动创建一个不带参数的构造函数
②  这个类没有构造函数
③  这个类不需要构造函数
④  该类不能通过编译
【单选题】 已知:print( )函数是一个类的常成员函数,它无返回值,下列表示中,( )是正确的。
①  void print( ) const;
②  const void print( );
③  void const print( );
④  void print(const);
【单选题】 如果表达式++i*k中的“++”和“*”都是重载的友元运算符,若采用运算符函数调用格式,则表达式还可以表示为( )。
①  operator*(i.operator++(),k)
②  operator*(operator++(i),k)
③  i.operator++().operator*(k)
④  k.operator*(operator++(i))