【单选题】【消耗次数:1】
A well written composition _____ good choice of words and clear organization among other things.
calls for
calls on
calls up
calls off
参考答案:
复制
纠错
相关题目
【单选题】 A well written composition ____ good choice of words and clear organization among other things.
①  calls for
②  calls on
③  calls up
④  calls off
【单选题】 He __________ five telephone calls to his parents.
①  makes
②  was made
③  has made
④  was making
【单选题】 If someone calls me, ask him or her to leave a [填空] .
①  message
②  letter
③  sentence
④  notice
【单选题】 She has always been quick to pick things up, doing ( ) well in school without really trying.
①  passably
②  passable
③  passenger@passage
【单选题】 Keep a __________attitude and good things will happen.
①  negative
②  positive
③  post
【单选题】 All things ____, the planned trip will have to be called off.
①  considered
②  be considered
③  considering
④  having considered
【单选题】 The organization has developed several techniques useful to other groups ____ the similar work.
①  to do
②  do
③  does
④  doing
【单选题】 Water_________ both by man and other living things.
①  was needed
②  is needed
③  needs
④  are needed
【单选题】 He moved to Ohio in 2005 where, ( )other things, he worked as a journalist.
①  awhile
②  amid
③  await
④  among
【单选题】 Things are back to _____ since we paid off all our debts.
①  formal
②  normal
③  regular
④  common
随机题目
【单选题】 若有char ch;利用getchar(ch);语句将字符“A”输入给变量ch,则输入方式()是正确的。
①  A↙
②  65↙
③  \041↙
④  \101↙
【单选题】 若定义intx[10];则TurboC编译系统为该数组分配()个字节存储单元。
①  10
②  11
③  20
④  21
【单选题】 C 语言中,函数首部的正确形式是()。
①  double fun(int x,int y)
②  double fun(int x;int xy)
③  double fun(int xy,int y)
④  double fun(int x,y)
【单选题】 设有不带参的宏定义#define N 20+1,则以下说法不正确的是:()。
①  编译预处理阶段,程序代码中所有的宏名N被原样替换为20+1
②  该不带参宏定义中的20+1为宏替换字符串
③  该不带参宏定义中的20+1为整型表达式
④  该不带参宏定义中的宏名N没有数据类型的概念
【单选题】 有以下程序,执行后输出结果是() main( ) { int m[][3]={1,4,7,2,5,8,3,6,9}; int i,j,k=2; for(i=0;i { printf(%d ,m[k][i]); } }
①  4 5 6
②  2 5 8
③  3 6 9
④  7 8 9
【单选题】 C语言的if语句嵌套时,if与else的配对关系是().
①  每个else总是与它上面的最近的if配对
②  每个else总是与最外层的if配对
③  每个else与if的配对是任意的
④  每个else总是与它上面的if配对
【单选题】 下列合法的数组定义是()
①  inta[]=string;
②  inta[5]={0,1,2,3,4,5};
③  chara=string;
④  chara[]={0,1,2,3,4,5};
【单选题】 已知字母a的ASCII十进制代码为97,则执行下列语句后的输出结果为(). chara=a;a--; printf(%d,%c\n,a+2-0,a+3-0);
①  b,c
②  a--运算不合法,故有语法错
③  98,c
④  格式描述和输出项不匹配,输出无定值
【单选题】 以下程序段运行后s的值是()。 int a[3][3]={1, 2, 3, 4, 5, 1, 2, 3, 4} ; int i, j, s=1; for(i=0; i for(j=i+1; j s+=a[i][j];
①  6
②  120
③  7
④  240
【单选题】 穷举法的基本要素中确定判断条件一般采用()结构。
①  顺序结构
②  选择结构
③  循环结构
④  递归结构