【单选题】【消耗次数:1】
A: I am not interested in fishing. B: [填空].
I do too.
Arent you?
Neither am I.
So am I.
参考答案:
复制
纠错
相关题目
【单选题】 Neither he nor I am a musician, _____?
①  am I
②  is he
③  are we
④  do we
【单选题】 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?
【单选题】 I am all ears, ____,I am listening to you with all attention.
①  in another words
②  in the other words
③  with other words
④  in other words
【单选题】 I am so tired that I spend one day _______.
①  to sleep
②  sleeping
③  sleeps
【单选题】 I am hungry. So [填空] he.
①  does
②  is
③  do
④  did
【单选题】 ---When do you wish to visit Canada?---- _____________I am settled, I’ll go there.
①  As
②  Since
③  Once
④  While
【判断题】 A: How old are you? B: Yes, I am.
①  正确
②  错误
【判断题】 A: Hello! Are you John Smith? B: Yes, I am.
①  正确
②  错误
【单选题】 I am a fisherman ______.
①  by trade
②  for trade
③  on trade
④  of trade
【单选题】 I am[填空]?tired?that I don’t want to go out.
①  very
②  too
③  so
④  indeed
随机题目
【单选题】 若实体A和B是1对多的联系,实体B和C是多对1的联系,则实体A和C是( )联系。
①  1对1
②  1对多
③  多对多
④  多对1
【单选题】 若一个关系为R(学生号,姓名,性别,年龄),则可以作为主码的属性为( )。
①  学生号
②  姓名
③  性别
④  年龄
【单选题】 实体中能够唯一标识自己的属性被称作( )。
① 
② 
③  联系
④  元组
【单选题】 设D1、D2和D3的定义域中的基数分别为2、3和4,则D1*D2*D3的元组数为( )。
①  9
②  24
③  10
④  14
【单选题】 假定一个二维数组的定义语句为“int a[3][4]={{3,4},{2,8,6}};”,则元素a[1][2]的值为()。
①  2
②  4
③  6
④  8
【单选题】 函数重载是指()。
①  两个或两个以上的函数取相同的函数名,但形参的个数或类型不同
②  两个以上的函数取相同的名字和具有相同的参数个数,但形参的类型可以不同
③  两个以上的函数名字不同,但形参的个数或类型相同
④  两个以上的函数取相同的函数名,并且函数的返回类型相同
【单选题】 以下正确的函数原型语句是()。
①  double fun(int x,int y)
②  double fun(int x;int y)
③  double fun(int,int);
④  double fun(int x,y);
【单选题】 函数调用func((exp1,exp2),(exp3,exp4,exp5))中所含实参的个数为()个。
①  1
②  2
③  4
④  5
【单选题】 以下关于函数模板叙述正确的是()。
①  函数模板也是一个具体类型的函数
②  函数模板的类型参数与函数的参数是同一个概念
③  通过使用不同的类型参数,函数模板可以生成不同类型的函数
④  用函数模板定义的函数没有类型
【单选题】 设有如下函数定义 int f(char *s) { char *p=s; while(*p!=’\0’) p++; return(p-s); } 在主函数中用coutf(“good”)调用上述函数, 则输出结果为( )。
①  3
②  4
③  5
④  6