【单选题】【消耗次数:1】
―______?―Id like to send this parcel to one of my friends.
What are you doing here
Whats your name
Where are you from
How may I help you
参考答案:
复制
纠错
相关题目
【单选题】 ―______? ― I’d like to send this parcel to one of my friends.
①  What are you doing here
②  What’s your name
③  Where are you from
④  How may I help you
【单选题】 A: [填空], may I help you? B: Id like to book a single room, please.
①  Holiday Hotel
②  Speaking
③  Hey
④  Im Franco Rossi
【单选题】 A: Can I help you? B: [填空]. Where do I pay my fees?
①  Thank you
②  As you please
③  Yes, you can
④  Yes, please
【单选题】 —Can I help you?—Id like to buy a present for my fathers birthday, _____ at a proper price, but of great use.
①  that
②  anyone
③  one
④  everything
【单选题】 -May I help you?-___. Do you have any apple juice?
①  Sure
②  Thank you
③  No, thanks
④  I don’t think so
【单选题】 It is the ability to do the work ___ matters not where you come from or what you are.
①  one
②  that
③  what
④  it
【判断题】 The question What is your affiliation? is to ask where you are working,you should answer I am with...
①  正确
②  错误
【单选题】 A: May I help you, madam? B: [填空].
①  Thats very kind of you
②  You are very nice
③  Youd better give me a hand
④  Yes, Id like a kilo of apples
【单选题】 It is the ability to do the job_____ matters, not where you come from or what you are.
①  one
②  that
③  what
④  if
【单选题】 Can I help you with your suitcase?
①  I have no idea
②  No, no. I can carry it myself
③  That’s a good idea
④  Thank you. I can manage myself
随机题目
【单选题】 若有定义:intx=10,y=8,a;则执行语句a=((--x==y)?x:y);后,变量a的值是()。
①  8
②  9
③  10
④  0
【单选题】 若有以下定义:structnode{intdata;structnode*next;}structnodem,n,k,*head,*p;已建立如下图所示的链表:mnk┌──┬──┐┌──┬──┐┌──┬──┐head→│data│next┼→│data│NULL│p→│data│next│└──┴──┘└──┴──┘└──┴──┘指针head指向变量m,m.next指向变量n,p指向变量k,不能把结点k插到m和n之间形成新链表的程序段是()。
①  p-next=head-m.next=p;
②  (*head).next=p;(*p).next=
③  head-next=p-next=head
④  -m.next=k.next=
【单选题】 若已定义:inta=6;floatb=1.5;要求输出形式为:6*1.50=9.00,应选用的正确输出语句是()。
①  printf("%d*%f=%f",a,b,a*b);
②  printf("%d*%.2f=%.2f",a,b,a*b);
③  printf("%d*%d=%.2f",a,b,a*b);
④  printf("%.2f*%.2f=%.2f",a,b,a*b);
【单选题】 若有以下定义:structnode{intdata;structnode*next;}structnode*p;已建立如下图所示的链表:┌──┬──┐┌──┬──┐┌──┬──┐p→│data│next┼→│data│next┼→...→│data│NULL│└──┴──┘└──┴──┘└──┴──┘指针p指向第一个结点,能输出链表所有结点的数据成员data的循环语句是()。
①  while(p!=NULL){printf("%d,",p-p++;}
②  while(p){printf("%d,",p.data);p=p-}
③  for(;p!=NULL;p++)printf("%d,",p
④  -for(;p;p=p-next)printf("%d,",(*p).data);
【单选题】 设有结构体的定义如下:structdata{intn;charc;floatf;};则sizeof(structdata)的值是(   )
①  1
②  3
③  7
④  11
【单选题】 若已定义inta=3,b=2,c=1;则语句++a||++b++c;运行后b的值为()。
①  0
②  3
③  1
④  2
【单选题】 以下程序段的运行结果是()。intx=3;do{printf("%3d,",x-=2);}while(!(--x));
①  1
②  30
③  死循环
④  1,-2
【单选题】
①  6
②  0
③  1
④  5
【单选题】 函数putchar()的功能是向终端输出()。
①  一个字符
②  多个字符
③  一个关系表达式
④  一个实型变量值
【单选题】 若有定义:inti,x=0;语句for(i=1;ii++)x+=2;与下列()程序段不等价。
①  i=1;for(;ii++)x+=2;
②  i=1;for(;;i++)x+=2;
③  for(i=1;i){x+=2;i++;}
④  i=1;for(;i){x+=2;i++;}