【单选题】【消耗次数:1】
They made a _____ search for the lost ring, but didn’t find it.
though
although
thorough
thoroughly
参考答案:
复制
纠错
相关题目
【单选题】 She didn’ t come to the party last Sunday._____, she must have made the party more exciting.
①  If she came
②  Would she come
③  Had she come Did she come
【单选题】 Although Jack made a foolish mistake, we __________ at him.
①  ought to have laughed
②  oughtn’t to have laughed
③  ought to laugh
④  should not to laugh
【单选题】 8. He offered a reward to____ should restore the lost ring.
①  who
②  whom
③  whoever
④  whomever
【单选题】 Although he did not know London well, he made his way ______ to the airport.
①  easy enough
②  enough
③  easily enough
④  enough easily
【单选题】 19.Though she talks little, she has made _______ friends here.
①  a few
②  few
③  littlle
④  a little
【单选题】 It was ___ it rained heavily that they didn’t come.
①  as
②  because
③  for
④  since
【单选题】 _______ she tried her best, she didn’t succeed.
①  Though
②  When
③  If
④  After
【单选题】 The old lady was _______ to the young man who helped her find her lost generation.
①  touched
②  cheerful
③  gratefu
④  generous
【单选题】 I’ m____ that he didn’ t come.
①  astonished
②  astonishing
③  astonish
④  to astonish
【单选题】 He didn’t ______ to cause so much unhappiness.
①  extend
②  attend
③  intend
④  tend
随机题目
【单选题】 以下fread函数的调用形式中,参数类型正确的是()
①  fread(unsignedsize,unsignedn,char*buffer,FILE*fp)
②  fread(char*buffer,unsignedsize,unsignedn,FILE*fp)
③  fread(unsignedsize,unsignedn,FILE*fp,char*buffer)
④  fread(FILE*fp,unsignedsize,unsignedn,char*buffer)
【单选题】 说明语句“staticinti=10;”中,“i=10”的含义是()
①  只说明了一个变量
②  与inti=10在功能上等价
③  将变量i初始化为10
④  将变量i赋值为10
【单选题】 下面关于进制运算规律描述正确的是()。
①  十进制是逢十进一,借一当二
②  二进制是逢二进一,借一当十
③  十进制是逢十进一,借一当十
④  二进制是逢二进一,借一当一
【单选题】 单字符输入函数是()。
①  putchar()
②  getchar()
③  gets()
④  puts()
【单选题】 fwrite函数的一般调用形式是()。
①  fwrite(buffer,count,size,fp)
②  fwrite(fp,size,count,buffer)
③  fwrite(fp,count,size,buffer)
④  fwrite(buffer,size,count,fp)
【单选题】 break语句不能单独使用在下列哪种语句中()。
①  while
②  for
③  if
④  switch
【单选题】 下列程序执行后的输出结果是() void func1(a) { switch(a) { case 1:printf(good); case 2:printf(nice); default:printf(end); } } main( ) { int i=2; func1(i); printf(\n); }
①  nice
②  end
③  good
④  niceend
【单选题】 当代电子计算机能够自动地处理指定的问题是因为:()
①  计算机是电动的
②  有解决该问题的计算机程序
③  事先存储了解决该问题的程序
④  以上都不是
【单选题】 下面关于API的描述错误的是()
①  API是用来控制Windows各个元素的外观和行为的一套预定义的Windows函数
②  创建应用程序,打开窗口、描绘图形都要调用API函数
③  Windows操作系统构建在API函数上
④  早期,windows程序员编写程序只能使用API函数
【单选题】 下面程序的输出结果是()。 #include int num=10; func( ) {int num=4; return ++num; } void main( ) { printf(%d\n, func( ) ) ; }
①  4
②  5
③  10
④  11