【判断题】【消耗次数:1】
His bedroom is not as clean as Bobs.
正确
错误
参考答案:
复制
纠错
相关题目
【单选题】 10.His bedroom_______a single bed with a small television at its foot.
①  makes up
②  consists of
③  laysout
④  servesas
【单选题】 The bedroom is [填空] .
①  not clean enough
②  not enough clean
③  clean not enough
④  enough not clean
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”He ordered Jim to put down his newspaper on the table and take off his clothes at once.
①  正确
②  错误
【单选题】 Lets clean our classroom,________?
①  will you
②  dont we
③  shall we
④  do you
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”His words moved everyone whom is present.
①  正确
②  错误
【单选题】 You must clean the classroom, ____ you?
①  needn’t
②  mustn’t
③  can’t
④  don’t
【单选题】 Our room must ___ clean.
①  keep
②  be kept
③  to be kept
④  to keep
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”Marys father was a doctor, and her mother was his cooker.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”Only his father drives the new car on Sundays.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”A few minutes later, Jim hear his name called.
①  正确
②  错误
随机题目
【单选题】 假定所有变量均已正确定义,则下列程序段运行后y的值是(  ) int a=0,y=10; if(a=0) y--; else if(a0) y++; else y+=y;
①  20
②  11
③  9
④  0
【单选题】 C语言对嵌套if语句的规定是:else语句总是与( )配对
①  其之前最近的if
②  第一个if
③  缩进位置相同的if
④  其之前最近的且尚未配对的if
【单选题】 能正确表示a>=10或a<=0的关系表达式是 ( )
①  a>=10 or a=10 | a=10 && a=10 | | a<=0
【单选题】 若int i=10; 执行下列程序后,变量i的正确结果是( ) switch ( i ) { case 9: i+=1; case 10: i+=1; case 11: i+=1; default : i+=1; }
①  13
②  12
③  11
④  10
【单选题】 判断字符型变量ch为大写字母的表达式是 ( )
①  ’A’=’A’)&(ch=’A’)&&(ch=’A’)AND(ch<=’Z’)
【单选题】 若k是int型变量,且有下面的程序: int k; k= -3; if (k=0) printf(“####”); else printf(“”); 上面程序段的输出结果是( )
①  ####
② 
③  ####
④  有语法错误,无输出结果
【单选题】 设a,b和c都是int型变量,且a=3,b=4,c=5,则下面表达式中,值为0的表达式是( )
①  ’a’’b’
②  a=b
③  a||b+cb-c
④  !((a
⑤  !c||1)
【单选题】 分析以下程序: main( ) { int x=5,a=0,b=0; if(x=a+b) printf(“** **\n”); else printf(“## ##\n”); 以上程序 ( )
①  有语法错,不能通过编译
②  通过编译,但不能连接
③  输出** **
④  输出## ##
【单选题】 以下程序的输出结果是( ) main() { int x=-10,y= 1,z=1; if(xy) if(y0) z=0; else z=z+1; printf(“%d\n”,z); }
①  0
②  1
③  2
④  3
【单选题】 两次运行下面的程序,如果从键盘上分别输入6和4,则输出结果是( )。 main( ) { int x; scanf(“%d”, if(x++>5) printf(“%d”,x); else printf(“%d\n”,x--); }
①  7和5
②  6和3
③  7和4
④  6和4