【判断题】【消耗次数:1】
Her hair is as long as mine.
正确
错误
参考答案:
复制
纠错
相关题目
【单选题】 Yourroomis ________ mine.
①  twice as large than
②  twicethesizeof
③  biggertwicethan
④  astwicelargeas
【单选题】 19. Your room is ____ mine.
①  twice as large
②  twice the size of
③  bigger twice than
④  as twice large as
【单选题】 20. Your room is ____ than mine.
①  three time big
②  three times big
③  three times bigger
④  bigger three times
【单选题】 They look similar _______ they’re both tall and slender with long hair.
①  now that
②  in that
③  so that
④  out that
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”Ruth listened to the boys story carefully and thought for a long time.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”Your long-term memory contains everything that you remember.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”The doctor asked her to take a good rest.
①  正确
②  错误
【单选题】 Yourroomis______mine.
①  twice as large than
②  twicethesizeof
③  biggertwicethan
④  astwicelargeas
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”I dont remember having seen her before.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”Marys father was a doctor, and her mother was his cooker.
①  正确
②  错误
随机题目
【单选题】 若有定义:structnode{intdata;structnode*next;};已建立如下图所示的链表:┌─┬─┐┌─┬─┐┌─┬─┐head→│2│┼→│4│┼→…→│28│┼→NULL└─┴─┘└─┴─┘└─┴─┘指针head指向链表首结点,以下函数的功能是()。voidfun(structnode*head){structnode*p=head;while(1){p=p-printf("%d",p-data);if(!p)break;}}
①  显示单向链表中第一个结点的数据
②  显示单向链表中最后一个结点的数据
③  显示单向链表中的所有数据
④  显示单向链表中除第一个结点外的所有数据
【单选题】
①  3
②  4
③  0
④  1
【单选题】 在C语言中,确定函数返回值的类型由(   )
①  return语句中的表达式类型决定
②  调用该函数的主函数类型决定
③  调用函数时临时决定
④  定义函数时所指定的函数类型决定
【单选题】 若已定义:inta=5,b=9,c=6;则语句b++;++c;a=b-c;运行后a的值为()。
①  5
②  3
③  2
④  4
【单选题】 以下程序的运行结果是()。main(){inta[3]={1,2,3};int*num[3];int**p,i;for(i=0;ii++)num[i]=p=num;printf("%d",**p);}
①  1
②  3
③  a[0]
④  num
【单选题】 以下程序段运行后sum的值为()。intk=0,sum=0;inta[3][4]={1,2,3,4,5,6,7,8,9,10,11,12};for(;kk++)sum+=a[k][k+1];
①  9
②  18
③  19
④  21
【单选题】 ()是正确的数组定义。
①  intn=10,x[n];
②  intx[10];
③  intN=10;intx[N];
④  intn;scanf("%d",intx[n];
【单选题】 以下说法中正确的是(   )
①  字符型变量可以存放字符串
②  递归调用是指函数调用自己
③  所有的外部函数只能在本文件中被调用
④  在循环体中break语句和continue语句的作用都是结束循环
【单选题】 以下程序段的运行结果是()。inta[]={1,2,3,4},i,j;j=1;for(i=3;ii--){a[i]=a[i]*j;j=j*3;}for(i=0;ii++)printf("%d",a[i]);
①  36912
②  181294
③  271894
④  541894
【单选题】 下列()对结构类型变量定义是错误的。
①  structteacher{intnum;intage;}teach1;
②  struct{intnum;intage;}teach1,teach2;
③  struct{intnum;intage;}teacher;structteacherteach1;
④  structteacher{intnum;intage;};structteacherteach1;