【单选题】【消耗次数:1】
I enjoyed the movie very much. I wish I______ the book from which it was made.
have read
had read
should have read
are reading
参考答案:
复制
纠错
相关题目
【单选题】 I haven’t read ____ of his books, but judging from the one I have read I think he’s a very promising writer.
①  any
②  none
③  both
④  either
【单选题】 When I read the newspaper, I always read the _____ first.
①  headlines
②  headquarters
③  heaven
④  horizon
【单选题】 I thought you________like something to read,so I have bought you some books.
①  may
②  might
③  could
④  must
【单选题】 11. I thought you _____ like something to read, so I have bought you some books.
①  may
②  might
③  could
④  must
【单选题】 It’s quite different from _____ I read last month.
①  that
②  which
③  the one
④  the one what
【单选题】 I ___ reading novels ___ watching movies. I like my own imagination when I read them.
①  would rather, than?
②  prefer, to?
③  prefer, than?
【单选题】 “Do you think, because I am poor, obscure, plain, and little, I am soulless and heartless? You think wrong!—I have as much soul as you,—and full as much heart! And if God had gifted me with some beauty and much wealth, I should have made it as hard for you to leave me, as it is now for me to leave you. ” This passage is taken from ________.
①  Emma
②  Wuthering Heights
③  Jane Eyre
④  Pride and Prejudice
【判断题】 If I have any comments to make, I’ll write them in the ___margin___ of the book I’m reading
①  正确
②  错误
【单选题】 I cannot read your writing. It is ____.
①  legible
②  illegible
③  eligible
④  intelligent
【单选题】 14. I won’t believe that the five-year-old boy can read five thousand words ______ I have tested him myself.
①  after
②  when
③  if
④  until
随机题目
【单选题】 函数默认参数在函数原型中说明,默认参数必须放在参数序列的( )
①  前部
②  中部
③  后部
④  两端
【单选题】 内联函数的特点是( )
①  减少代码量,加快访问速度
②  减少代码量,减缓访问速度
③  增加代码量,减缓访问速度
④  增加代码量,加快访问速度
【单选题】 以下说法中正确的是
①  C++程序总是从第一个定义的函数开始执行
②  C++程序总是从main函数开始执行
③  C++中函数必须有返回值
④  C++中函数名必须唯一
【单选题】 有关C++编译指令,以下叙述正确的是()
①  C++每行可以写多条编译指令
②  #include指令中的文件名可含有路径信息
③  C++的编译指令可以以#或//开始
④  C++中不管#if后的常量表达式是否为真,该部分都需要编译
【单选题】 要禁止修改指针p本身,又要禁止修改p所指向的数据,这样的指针应定义为()
①  const char *p=“ABCD”;
②  char *const p=“ABCD”;
③  char const *p=“ABCD”;
④  const char * const p=“ABCD”;
【单选题】 类的私有成员可在何处被访问( )
①  本类的成员函数中
②  本类及子类的成员函数中
③  通过对象名在任何位置
④  不可访问
【单选题】 在int a=3,int *p=&a;中,*p的值是()
①  变量a的地址值
②  无意义
③  变量p的地址值
④  3
【单选题】 下列哪个类型函数不适合声明为内联函数( )
①  函数体语句较多
②  函数体语句较少
③  函数执行时间较短
④  函数执行时间过长
【单选题】 用于标识十六进制前缀或后缀是( )
① 
②  后缀L或e
③  前缀零
④  前缀0x
【单选题】 设有定义int i;double j=5;,则10+i+j值的数据类型是()
①  int
②  double
③  float
④  不确定