【单选题】【消耗次数:1】
He is always __________ (cause) trouble.
caused
cause
causing
参考答案:
复制
纠错
相关题目
【单选题】 He didn’t ______ to cause so much unhappiness.
①  extend
②  attend
③  intend
④  tend
【判断题】 He did not __compromise___ easily, but was willing to accept any constructive advice for a worthy cause.
①  正确
②  错误
【判断题】 Cancer is second only of heart disease as a cause of death.
①  正确
②  错误
【判断题】 判断线上的内容是否正确:He did not __compromise___ easily, but was willing to accept any constructive advice for a worthy cause.
①  正确
②  错误
【单选题】 2. The cause of ______ disease is the economic and educational backwardness of the country.
①  long
②  infectious
③  bad
④  boring
【单选题】 It is these poisonous products ___ can cause the symptoms of the flu, such as headache and aching muscles.
①  who
②  that
③  how
④  what
【单选题】 The school was named ________ the hero who gave his life for the cause of the liberation.
①  for
②  with
③  after
④  about
【单选题】 Some drugs cause blurred vision and changes in color, or increased tears.
①  reception
②  perception
③  conception
④  deception
【单选题】 18. ______ the Atlantic Ocean crosses the equator, the trade winds cause a flow of water to the west.
①  That
②  When
③  Where
④  Though
【简答题】 Translate the following sentence into ChineseProfessor Zhou was committed to the cause of language teaching all his life.
随机题目
【简答题】 一个表达式的最后加一个分号就成了一个[填空1]。
【简答题】 C语言中,sizeof( )是分别是测定某种类型数据所占[填空1]长度的运算符。
【简答题】 下列程序的输出结果是[填空1]。#includestdio.hmain(){ char a;a=0printf(%d%c,a,a); }
【简答题】 C语言中,++i是先[填空1],后[填空2];i--是先[填空3],后[填空4]。
【简答题】 赋值运算符比逗号运算符的优先级别[填空1]。
【简答题】 给出下列公式的C语言表达式[填空1][填空2][填空3][填空4]。<img src="http://huaweicloudobs.ahjxjy.cn/6634d37ae8c585d13587acb39988cdd9.png"/>
【简答题】 [填空1]运算符的优先级别最低。
【简答题】 表达式3*2+4.0/5?15%?4+(5*8/9+4)%5?1/2+1.0/2的值是[填空1]。
【简答题】 分析下面程序main(){ int x=2,y,z;x*=3+2;printf(%d\nx*=y=z=4;printf(%d\nx=y=1;z=x++-1;printf(%d,%d\n,x,z);z+=-x++ +(++y);printf(%d,%d,x,z); }程序的输出结果是[填空1]。
【简答题】 输入一个字符,如果是大写字母,则把其变成小写字母;如果是小写字母,则变成大写字母;其它字符不变。请在()内填入缺省的内容。main( ) { char scanf(“%c”, if ([填空1]) ch=ch+32; else if(ch=’a’ch=‘z’) ([填空2]);printf(”%c\n”,ch); }