【判断题】【消耗次数:1】
The voyage from England to Italy used to take six months.
正确
错误
参考答案:
复制
纠错
相关题目
【单选题】 Credit cards make it possible to ( ) payment over weeks or months.
①  spread
②  spread out
③  spread from
④  spread outwards
【单选题】 700,000 new cars[填空] in India in the last twelve months.
①  have been sold
②  sold
③  sell
④  have sold
【单选题】 Evidence came up ____ specific sounds are recognized by babies as young as six months old.
①  what
②  that
③  which
④  whose
【单选题】 The young man ______ the charm of his new colleague, a blonde from England.
①  took a chance
②  threw a book at
③  fell victim to
④  comply with
【单选题】 I used to ( ) if I didnt get at least six hours sleep at night.
①  moaning
②  moat
③  moan
④  moans
【单选题】 You may choose anyone from the six popular [填空] of ice cream!
①  flavors
②  flavor
③  flavoring
④  favor
【单选题】 Chronologically the Victorian period roughly coincides with the reign of Queen _____ who ruled over England from 1836 to 1901.
①  Elizabeth
②  Victoria
③  Mary
④  Anne
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”Computers are being used more and more extensively in the world today.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”The doctor asked her to take a good rest.
①  正确
②  错误
【单选题】 —Can you take the day off tomorrow? —Well, I’ll have to get ____ from my boss.
①  permission
②  permit
③  allowance
④  possession
随机题目
【单选题】 从一个数据文件中读入以换行符结束的一行字符串的函数为( )。
①  gets()
②  fgets()
③  getc()
④  fgetc()
【单选题】 下面的标识符中,( )具有全局级作用域。
①  函数形参
②  全局变量
③  内部静态类标识符
④  自动变量符
【单选题】 下面的标识符中,( )是文件级作用域。
①  函数形参
②  语句标号
③  外部静态类标识符
④  自动类标识符
【单选题】 假定一个链表的表头指针为f,结点结构为(data,next),则向该链表的表头插入一个由p所指向的结点时,应执行的操作为p->next=f和( )。
①  p=f->next
②  f=p->next
③  f=p
④  f->next=p
【单选题】 假定一个函数的参数说明为const int* a,则在函数体中执行( )操作非法。
①  printf(“%d”,*a)
②  a==NULL
③  *a=20
④  a=NULL
【单选题】 要把一个整形指针p转换为字符指针,则采用的强制转换表达式为( )。
①  (int*)p
②  (int)*p
③  (char*)p
④  (char)*p
【单选题】 假定p是一个指向float型数据的指针,则p+1所指数据的地址比p所指数据的地址大( )字节。
①  1
②  2
③  4
④  8
【单选题】 假定p所指对象的值为25,p+1所指对象的值为42,则*p++的值为( )。
①  25
②  42
③  26
④  43
【单选题】 假定要访问一个结构指针p所指对象中的b指针成员所指向的对象,则表示方法为( )。
①  p->b
②  p.b
③  *(p->b)
④  *(b->p)
【单选题】 假定一个数据对象为int*类型,则指向该对象的指针的类型为( )。
①  int
②  int *
③  int **
④  int ***