【单选题】【消耗次数:1】
He doesn’ t spend much time____ his homework.
in
do
on
to do
参考答案:
复制
纠错
相关题目
【单选题】 In order to prepare a lecture, one must do a lot of research and spend plenty of time____ his material so that his speech is clear and easy to follow.
①  organizing
②  managing
③  operating
④  breeding
【单选题】 He will surely finish the job on time _______ he is left to do it in his own way.
①  in that
②  in case
③  as far as
④  so long as
【判断题】 She doesn’t do her work on weekdays, does she?
①  正确
②  错误
【单选题】 _______ the look on his face, he doesn’t t quite understand what the speaker is saying.
①  Judge by
②  Judging by
③  To judge by
④  To be judged by
【单选题】 Isn’t it about the time you __________ to do morning exercises?
①  began
②  begin
③  should begin
④  have begun
【单选题】 Sandy could do nothing but _______ to his teacher that he was wrong.
①  admit
②  admitted
③  admitting
④  to admit
【单选题】 The teacher asked ______ students to do homework ourselves.
①  the
②  his
③  some
④  us
【单选题】 —The red dress fits me very much, doesn’t it?— .
①  Yes, it does.
②  You looks very beautiful.
③  It is a little tight.
④  wonderful
【单选题】 He didn’t keep on asking me the time any longer as he had had his watch ____.?
①  repaired ?
②  to repair ?
③  repairing ?
④  repair?
【单选题】 —Do you have much experience with caring for babies?— .
①  Yes, I do. I am responsible, loving, warm girl, and often take care of kids in my free time.
②  No, you are freshmen. You should work hard.
③  Yes, they are. They are very cute.
随机题目
【单选题】 定义字符数组charclassname[100];接收从键盘输入的班级名称,下面语句正确的是()
①  scanf(%c,classname)
②  scanf(%s,classname);
③  Scanf(%c,classname);
④  Scanf(%s,classname);
【单选题】 若变量已正确说明为int类型,要给a,b,c输入数据,以下语句正确的是()
①  read(a,b,c);
②  scanf(%d%d%d,a,b,c);
③  scanf(%D%D%D,a,%b,%c);
④  scanf(%d%d%d,a,b,c);
【单选题】 求多个数的和值,一般我们设置和值变量的初始值是()。
①  0
②  1
③  2
④  3
【单选题】 下面是对字符数组str 的初始化语句,其中不正确的是()。
①  char str[5]={abcd};
②  char str[5]={’a’,’b’,’c’,’d’};
③  char str[]=abcd;
④  char str[5];str=abcdef;
【单选题】 以下程序的输出结果是()。 main( ) { int b[3][3]={0,1,2,0,1,2,0,1,2},i,j,t=0; for(i=0;i for(j=i;j t=t+b[i][b[j][j]]; printf(%d\n,t); }
①  3
②  4
③  1
④  9
【单选题】 设有程序:则在程序中的两个括号中分别应填入() main( ) { int i,a[11]; printf(给数组赋值:\n); for (i=0;i scanf(%d,( )); ... ... printf(输出数组:\n); for(i=0;i printf(%d,,( )); }
①  a[i]和a[i]
②  a[i]和a[i]
③  a[i]和a[i]
④  a[i]和a[i]
【单选题】 设有定义:int m,n,a,b,c,d;和语句m=n=a=b=c=d=0;执行:(m=a==b)(n=c==d);后,m,n 的值分别是()。
①  0,0
②  0,1
③  1,0
④  1,1
【单选题】 启动计算机是将操作系统()。
①  从磁盘调入CPU
②  从软盘装入硬盘
③  从呢存储器调入高速缓冲器
④  从系统盘调入内存储器
【单选题】 以下对二维数组a进行正确初始化的是()
①  inta[2][3]={{1,2},{3,4},{5,6}};
②  inta[][3]={1,2,3,4,5,6};
③  inta[2][]={1,2,3,4,5,6};
④  inta[2][]={{1,2},{3,4}};
【单选题】 以下程序执行后输出结果是() #include stdio.h main( ) { char s[]=\n123\\; printf(%d,%d\n,strlen(s),sizeof(s)); }
①  赋初值的字符串有错
②  6,7
③  5,6
④  6,6