【单选题】【消耗次数:1】
I followed her _______ but I still couldnt work out how to use the sewing machine.
description
introduction
instructions
comments
参考答案:
复制
纠错
相关题目
【单选题】 I don’t think you can work out the maths problem ___ her help.
①  since
②  unless
③  with
④  without
【单选题】 I haven’t seen her for years, but I could still ____ her voice on the phone.
①  recognize
②  realize
③  hear
④  know
【多选题】 No matter how ______ the problem is , we will work it out.
①  A.easy
②  B.difficult
③  C.challenging
④  D.hard
【单选题】 A: Sorry, I couldnt come to the party? I was sick that day. B: [填空].
①  I dont know that
②  Yes, well have another party
③  Thats all right
④  No, the party wasnt held
【判断题】 If I have any comments to make, I’ll write them in the ___margin___ of the book I’m reading
①  正确
②  错误
【单选题】 I remember her face but I cannot___ where I met her.
①  recall
②  remind
③  remark
④  remember
【单选题】 A: I went on a date with Susan last weekend. B: Really? [填空]? A: I couldnt ask for a better night.
①  Is she nice
②  How was it
③  Is it a beautiful night
④  Did you like her
【单选题】 Could I use your dictionary for a moment?
①  It’s well
②  It doesn’t matter
③  By all means
④  I have no idea
【单选题】 — Could I use your dictionary for a moment?— _______________________.
①  Its well
②  It doesnt matter
③  I have no idea
④  By all means
【单选题】 May I use your bike for a moment?___________
①  It’s well.
②  It doesn’t matter.
③  By all means.
④  I have no idea.
随机题目
【单选题】 函数原型语句正确的是(????)
①  int Function(void a);
②  void Function (int);
③  int Function(a);?
④  void int(double a);
【单选题】 为了提高程序的运行速度,可将不太复杂的功能用函数实现,此函数应选择(????)。
①  内联函数
②  重载函数
③  递归函数
④  模板
【单选题】 以下关于函数模板叙述正确的是(????)
①  函数模板也是一个具体类型的函数
②  函数模板的类型参数与函数的参数是同一个概念
③  通过使用不同的类型参数,函数模板可以生成不同类型的函数
④  用函数模板定义的函数没有类型
【单选题】 当类中一个字符指针指向具有n个字节的存储空间时,它所存储字符串的最大长度是( )
①  n
②  n-1
③  n+1
④  n-2
【单选题】 设有如下函数定义 int f(char *s) { char *p=s; while(*p!=’\0’) p++; return(p-s); } 在主函数中用cout<<f(“good”)调用上述函数, 则输出结果为( )
①  3
②  4
③  5
④  6
【单选题】 下列(????)的调用方式是引用调用
①  形参和实参都是变量?
②  形参是指针,实参是地址值
③  形参是引用,实参是变量
④  形参是变量,实参是地址值
【单选题】 在下面的字符数组定义中,哪一个有语法错误(????)
①  char a[20]=”abcdefg”;
②  char a[]=”x+y=55.”;
③  char a[15];
④  char a[10]=’5’;
【单选题】 若定义了函数 double *function(), 则函数function的返回值为(????)。
①  实数型
②  实数的地址C.指向函数的指针
③  函数的地址
【单选题】 假定一个二维数组的定义语句为“int a[3][4]={{3,4},{2,8,6}};”,则元素a[2][1]的值为(???)。
①  0
②  4
③  8
④  6
【单选题】 假定一个二维数组的定义语句为“int a[3][4]={{3,4},{2,8,6}};”,则元素a[1][2]的值为(???)。
①  2
②  4
③  6
④  8