【单选题】【消耗次数:1】
Imlookingforababysitter,Shemustbe_____tooold_____tooyoung.
neither;nor
both;and
either;or
notonly;butalso
参考答案:
复制
纠错
相关题目
【单选题】 Neither he nor I am a musician, _____?
①  am I
②  is he
③  are we
④  do we
【单选题】 Neither the students nor the professor______ anything about it.
①  knows
②  know
③  is known
④  are knowing
【单选题】 Neither John nor his roommates _____ in the dormitory yesterday evening.
①  was
②  were
③  has been
④  had been
【判断题】 A: He doesnt speak French.B: 1. Nor do you2. Neither do you对话中B的两种回应意义不同。
①  正确
②  错误
【单选题】 Notonly______ apromise,butalsohekeptit.
①  did his parents make
②  his parents made
③  does his parents make
④  has his parents made
【单选题】 NOR人群治疗目标是
①  减少促排卵时间
②  缩短达活产时间
③  提高鲜胚移植活产率
④  降低OHSS发生风险
⑤  以上均是
【单选题】 ______ either you or I good at drawing?
①  Am
②  Are
③  Is
④  Do
【单选题】 Neither of them________the snake.
①  dares catches
②  dare to catch
③  dare catching
④  dare catch
【单选题】 Neither Sandynor her brother ____ the concert.
①  is going to
②  are going to
③  are going to go
④  is go
【单选题】 17.Neither of them ____ the snake.
①  dares catches
②  dare to catch
③  dare catching
④  dare catch
随机题目
【单选题】 若按如下定义,函数link的功能是()。其中head指向链表首结点,整个链表结构如下图:┌──┬─┐┌──┬─┐┌──┬──┐head→│data│┼→│data│┼→…→│data│NULL│└──┴─┘└──┴─┘└──┴──┘structnode{intdata;structnode*next;};voidlink(structnode*head){structnode*p=head;while(p!=NULL){if(p-data%2==1)printf("%d",p-p=p-}}
①  计算链表head中结点的个数
②  遍历链表head,输出表中值为奇数的元素
③  删除链表head中的所有结点
④  插入一个新元素到链表head中
【单选题】 x的值在-20至-5之间为“真”,否则为“假”的正确逻辑表达式为()。
①  -20-5
②  x-20x-5
③  !(x-20)!(x-5)
④  -5-20
【单选题】 ()为正确的变量名。
①  -k15
②  int
③  k_5
④  k.jeep
【单选题】 若有定义intm=4321,n=123,k=21;语句printf("%4d+%3d+%2d",m,n,k);执行后的输出结果是()。
①  4321432143211231231232121
②  432112321
③  4321+123+21
④  432+123+021
【单选题】
①  0
②  3
③  12
④  15
【单选题】 执行下面程序段后,输出字符B的个数是(   )x=0;while(x=5){printf("B");x+=2;}
①  0个
②  3个
③  5个
④  6个
【单选题】 若有定义:intx;charc=A;则正确的赋值表达式是()。(说明:A的ASCII码的十进制值为65,a的ASCII码的十进制值为97)
①  x=c+32
②  x=c+ABC
③  x=c+CBA
④  x=ABC
【单选题】
①  函数调用
②  int型表达式
③  double型表达式
④  非法表达式
【单选题】
①  charintlongint=folatdouble
【单选题】 对下面程序描述正确的是()。#includestdio.h#includestdlib.hvoidmain(){FILE*in,*out;if((in=fopen("file1.txt","a+"))==NULL){printf("cannotopenfile1\n");exit(0);}if((out=fopen("file2.txt","a+"))==NULL){printf("cannotopenfile2\n");exit(0);}while(!feof(out))fputc(fgetc(out),in);fclose(in);fclose(out);}
①  程序实现在屏幕上显示磁盘文件file1.txt的内容
②  程序实现将磁盘文件file2.txt复制到磁盘文件file1.txt
③  程序实现将两个磁盘文件file1.txt和file2.txt的内容合二为一
④  程序实现在屏幕上显示磁盘文件file2.txt的内容