【多选题】【消耗次数:1】
The kinds of evidence include:
facts
statistics
examples
description
personal anecdote
参考答案:
复制
纠错
相关题目
【单选题】 anecdote
①  short amusing story
②  long tedious talk
③  uninteresting writing
④  exciting information
【单选题】 Susan doesnt ( )?her opinions?with examples.
①  look up@take up
②  back up
③  catch up
【单选题】 Which of the following types of lexicology refers to the description of the vocabulary of a given language?
①  General lexicology
②  Special lexicology
③  Historical lexicology
④  Descriptive lexicology
【多选题】 We_____________ from the facts.
①  drew a conclusion
②  reached a conclusion
③  came to a conclusion
④  started a conclusion
【单选题】 They drew different ______________ from the facts.
①  attentions
②  examinations
③  decisions
④  conclusions
【单选题】 The computer of this kind is ____ handling with all kinds of information.
①  capable to
②  able to
③  capable of
④  able of
【单选题】 The evidence was[填空]too complicated for us.
①  far
②  very
③  real
④  farther
【判断题】 In precis writing, try to keep all the examples in the orginal passage.
①  正确
②  错误
【单选题】 __________ evidence that language acquiring ability must be stimulate@@
①  It being
②  It is
③  There is
④  There being
【单选题】 , the sales manager began his report with the statistics of last month’s sales.
①  By now
②  As usual
③  So far
④  At most
随机题目
【单选题】 若有定义int*x[3],b[10];则正确的赋值语句是()
①  x=b[0];
②  x=b;
③  x[0]=b[0];
④  x[0]=b[0];
【单选题】 若有int b[4]={0,1,2,3},*p则数值不为3的表达式是:()
①  p=s+2,*(p++)
②  p=s+3,*p++
③  p=s+2,*(++p)
④  s[3]
【单选题】 若有定义:int a[2][4];,则引用数组元素正确的是()
①  a[0][3]
②  a[0][4]
③  a[2][2]
④  a[2][2+1]
【单选题】 若a是int类型变量,()不是合法的C语句。
①  {intj;j++;}
② 
③  {;}
④ 
【单选题】 十进制数16的十六进制数是()
①  11
②  12
③  13
④  10
【单选题】 下面程序的运行结果是() #include stdio.h main( ) { char a[]=morning,t; int i,j=0; for(i=1;i if(a[j]j=i; t=a[j]; a[j]=a[7]; a[7]=a[j]; puts(a); }
①  mogninr
②  mo
③  morning
④  mornin
【单选题】 选择出合法的if语句(设int x,a,b,c;)()。
①  if(a==b)x++
②  if(a=b)x++
③  if(ab)x++
④  if(a=b)x++
【单选题】 若有定义int *f();则在此定义了一个()。
①  指向整型函数的指针变量
②  基类型为整型的指针变量
③  返回整型指针值的函数
④  不符合C 语言语法
【单选题】 变量的有效范围与其定义位置有关,(),其作用域在整个源程序文件中都有效。
①  在第一个函数中定义的变量
②  在定义第一个函数之前所定义的变量
③  在主函数中定义的变量
④  在函数中定义的静态变量
【单选题】 有以下程序,程序执行后的输出结果是( ) #include int fun(int x [ ],int n) { static int sum=0,i; for(i=0; i{ sum+=x[i]; } return sum; } void main( ) { int a[ ]={1,2,3,4,5}; int b[ ]={6,7,8,9},s=0; s=fun(a,5)+fun(b,4); printf(%d\n,s); }
①  45
②  50
③  60
④  66