【单选题】【消耗次数:1】
3.Many American people lost their jobs in the economic_________of 1929.
emergency
crisis
time
stage
参考答案:
复制
纠错
相关题目
【单选题】 It is said that ______ 2000 factories closed down during the economic crisis.
①  properly
②  approximately
③  . considerably
【单选题】 They claim that __________ 1,000 factories closed down during economic crisis.
①  sufficiently
②  approximately
③  considerably
④  properly
【单选题】 Life is often compared ______ a stage by many writers.
①  like
②  as
③  with
④  to
【单选题】 In such an emergency, one has no time to think carefully but to act ( ).
①  exactly
②  precisely
③  hastily
④  instinctively
【单选题】 The British people and the American people not only speak the same language but ____ a lot of special customs as well.
①  share
②  spare
③  hold
④  carry
【单选题】 19. The American people _____ a president every four years.
①  choose
②  elect
③  pick
④  select
【单选题】 The employment rate has gone up, _______many graduates think it hard to find appropriate jobs.
①  so
②  and
③  but
【单选题】 20. Its impossible for all the people to get jobs because ______ of them are not fit for them.
①  none
②  all
③  notall
④  everyone
【单选题】 —How many people are there in Changsha?—About six ______.
①  million
②  millions
③  millions of
【判断题】 There have many people outside the room.
①  正确
②  错误
随机题目
【单选题】 标准输入设备的文件流标识符是( )。
①  stdin
②  stdout
③  stderr
④  stdio
【单选题】 从一个数据文件中读入以换行符结束的一行字符串的函数为( )。
①  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)