【单选题】【消耗次数:1】
A: Have you ever been to Huangshan? B:[填空].
No. Twice
I went there twice
Yes. Twice
Yes. Ill go there next month
参考答案:
复制
纠错
相关题目
【单选题】 A: I go to the gym twice a week. B: [填空] You look really fit and healthy.
①  Thats right!
②  I can tell.
③  No way!
④  Poor you!
【单选题】 The building is twice [填空] big as that one.
①  as
②  so
③  for
④  at
【单选题】 I like this jacket better than that one, but it costs twice ______.
①  as much
②  so much
③  that much
④  too much
【判断题】 A: Need you go yet? B: Yes, I need.
①  正确
②  错误
【单选题】 ______ a year does your school have sports meeting?Twice a year.
①  How often
②  How soon
③  How long
④  How many times
【判断题】 A: Would you go and see the film? B: Yes, I would.
①  正确
②  错误
【判断题】 A: Excuse me, have you got the time? B: Yes, I have.
①  正确
②  错误
【判断题】 A: You havent changed your mind, have you? B: Yes, I havent.
①  正确
②  错误
【判断题】 A: How old are you? B: Yes, I am.
①  正确
②  错误
【判断题】 A: Do you have any children? B: Yes, a boy and a girl.
①  正确
②  错误
随机题目
【单选题】 假定一个函数的二维数组参数说明为char w[][N],则与之等价的指针参数说明为( )。
①  char(*w)[N]
②  char *w [N]
③  char(*w) N
④  char** a
【单选题】 C语言中系统函数fopen()是( )一个数据文件的函数。
①  读取
②  写入
③  关闭
④  打开
【单选题】 向一个二进制文件写入信息的函数fwrite()带有( )参数。
①  1
②  2
③  3
④  4
【单选题】 下面的标识符中,( )具有全局级作用域。
①  函数形参
②  全局变量
③  内部静态类标识符
④  自动变量符
【单选题】 假定k是一个double类型的变量,则定义变量p的正确语句为( )。
①  double p=
②  double *p=
③  double
④  char *p=”Thank you!”;
【单选题】 C程序文件的扩展名为( )。
①  obj
②  exe
③  cpp
④  c
【单选题】 假定有“struct BOOK{char title[40];float price;} book;”,则正确的语句为( )。
①  struct BOOK x=
②  struct BOOK *x=
③  struct BOOK x=calloc(BOOK);
④  struct BOOK *x=BOOK;
【单选题】 假定a为一个字符数组名,则a[8]的地址比该数组的首地址大( )个字节。
①  4
②  8
③  16
④  32
【单选题】 程序运行中需要从键盘输入多于一个数据时,各数据之间应使用( )符号作为分隔符。
①  空格或逗号
②  逗号或回车
③  回车或分号
④  空格或回车
【单选题】 用calloc函数创建具有10个整型元素的一维数组的正确语句是( )。
①  int *p=calloc(10,2);
②  int *p=callo(10;
③  int *p=calloc(10,4);
④  int *p=malloc(10);