【判断题】【消耗次数:1】
If necessary, you can add your own comments and responses in a precis.
正确
错误
参考答案:
复制
纠错
相关题目
【判断题】 In precis writing, you can rearrange the main points in the orignal passage in your own way.
①  正确
②  错误
【判断题】 Paraphrasing only can not produce a good precis.
①  正确
②  错误
【判断题】 If too many details are retained in a precis, it can hardly be considered a good precis.
①  正确
②  错误
【判断题】 The collection of important sentences can make an effective precis.
①  正确
②  错误
【单选题】 You can add the word [] before the addressees name.
①  please
②  honored
③  my
④  dear
【单选题】 Can I help you with your suitcase?
①  I have no idea
②  No, no. I can carry it myself
③  That’s a good idea
④  Thank you. I can manage myself
【单选题】 I leave it to your own judgement you should do it.
①  that
②  which
③  whether
④  What
【单选题】 You must think of [填空] you can do for your parents.
①  that
②  how
③  what
④  which
【单选题】 If you show your key, you can get a 10% ( )at the restaurant here.
①  count
②  discount
③  cheap
④  discussion
【单选题】 Show me your ____ hand. Can you move it like that?
①  another
②  the other
③  other
④  the others
随机题目
【单选题】 文本文件quiz.txt的内容为"Programming"(不包含引号),以下程序段的运行结果是()。FILE*fp;char*str;if((fp=fopen("quiz.txt","r"))!=NULL)str=fgets(str,7,fp);printf("%s",str);
①  Progr
②  Progra
③  Program
④  Programming
【单选题】 C语言中,若缺省定义函数返回值类型,则该函数默认返回值类型是()。
①  void
②  long
③  int
④  double
【单选题】 若在fopen函数中使用文件的方式是"a+",该方式的含义是()。
①  以读/写方式打开一个文本文件
②  以输出方式打开一个文本文件
③  以读/写方式建立一个新的文本文件
④  以读/写方式建立一个新的二进制文件
【单选题】 以下程序段运行后s的值是()。inta[3][3]={1,2,3,4,5,1,2,3,4};inti,j,s=1;for(i=0;ii++)for(j=i+1;jj++)s+=a[i][j];
①  6
②  120
③  7
④  240
【单选题】 以下程序段运行后,x[1]的值为()。intx[5]={5,4,3,2,1};x[1]=x[3]+x[2+2]-x[3-1];
①  6
②  0
③  1
④  5
【单选题】 构成C源程序的基本单位是()
①  语句
②  变量
③  运算符
④  函数
【单选题】 t和q分别指向图中所示结点:ptq↓↓↓┌──┬──┐┌──┬──┐┌──┬──┐│data│next┼→│data│next┼→│data│next┼→...└──┴──┘└──┴──┘└──┴──┘现要将t和q所指结点的先后位置交换,同时要保持链表的连续,以下错误的程序段是()
①  t-next=q-p-next=q;q-next=t;
②  p-next=q;t-next=q-q-next=t;
③  q-next=t;t-next=q-p-next=q;
④  t-next=q-q-next=t;p-next=q;
【单选题】 下列程序段中,非死循环的是()。
①  inti=100;while(1){i=i%100+1;if(i=100)break;}
②  intk=0;do{++k;}while(k
③  ints=10;while(++s%2+s%2)s++;
④  for(;;)
【单选题】
①  5
②  7
③  10
④  0
【单选题】
①  -1
②  1
③  0
④  5