【单选题】【消耗次数:1】
What about [填空] out for a meal?
go
goes
going
go to
参考答案:
复制
纠错
相关题目
【判断题】 A: Lets go out for a meal next Saturday, OK? B: Why not?
①  正确
②  错误
【单选题】 A: What about going for a walk? B: [填空].
①  Thats all right
②  Walking is good to you
③  Why not? A good idea
④  Its up to you
【单选题】 ---Are you going there with them ? ----If you go,__________.
①  I also go
②  so do I
③  so I will
④  so will I
【单选题】 A: Shall we go out for dinner tonight? B: [填空].
①  You are right
②  Have a nice time
③  Thats a good idea
④  My pleasure
【单选题】 What I meant was that we should go[填空] with the work.
①  on
②  in
③  down
④  out
【单选题】 What about [填空] shopping ?
①  go
②  goes
③  going
④  go to
【判断题】 Lets go out for a walk.
①  正确
②  错误
【单选题】 Can you go out with us for dinner this evening?
①  No, I already have plans
②  Thanks a lot but I’m busy tonight
③  No, I really don’t like being with you
④  I’m ill, so I shouldn’t go out for dinner
【单选题】 I am[填空]?tired?that I don’t want to go out.
①  very
②  too
③  so
④  indeed
【单选题】 27. If it ____ tomorrow, we will not go out.
①  rains
②  will rain
③  is going to rain
④  is to rain
随机题目
【判断题】 设top是一个链栈的栈顶指针,栈中每个结点由一个数据域data和指针域next组成,设用x接收栈顶元素,则出栈操作为top=top-x=top-。
①  正确
②  错误
【单选题】 元素2,4,6,8按顺序依次进栈,按该栈的的可能输出序列依次入队列,该队列的可能输出序列是( )(进栈出栈可以交替进行)。
①  A.8,6,2,4
②  B.8,4,2,6
③  C.6,2,4,8
④  D.8,6,4,2
【单选题】 对不带头结点的单向链表,判断是否为空的条件是( )(设头指针为head)。
①  A.head==NULL
②  B.head-next= =NULL
③  C.head-next= =head
④  D.head =NULL
【单选题】 头指针为head的带头结点的单向链表为空的判定条件是( )为真。
①  A. head= =NULL
②  B. head-next= =NULL
③  C. head-next=NULL;
④  D. head-next!= NULL
【单选题】 在一个栈顶指针为top的链栈中,将一个p指针所指的结点入栈,应执行( )。
①  A.top-next=p;
②  B.p-next=top-top-next=p;
③  C.p-next=top; top=p;
④  D.p-next=top- top=top-
【单选题】 在一个不带头结点的链队中,假设f和r分别为队头和队尾指针,则对该队列进行出队操作中并把结点的值保存在变量e中,其运算为e=f?data;和( )。
①  A.r=r?next;
②  B.r?next=r;
③  C.f=f?next;
④  D.f?next=f;
【单选题】 一个顺序栈一旦被声明,其占用空间的大小( )。
①  A.已固定
②  B.可以改变
③  C.不能固定
④  D.动态变化
【单选题】 在一个长度为n的顺序存储线性表中,向第i个元素(1£ i£n)之前插入一个新元素时,需要依次后移( )个元素。
①  A.n-i
②  B.n-i+1
③  C.n-i-1
④  D.i
【单选题】 对链表, 以下叙述中正确的是( )。
①  A.不能随机访问任一结点
②  B.结点占用的存储空间是连续的
③  C.插入删除元素的操作一定要要移动结点
④  D.可以通过下标对链表进行直接访问
【单选题】 线性表在存储后,如果相关操作是:要求已知第i个结点的位置访问该结点的前驱结点,则采用( )存储方式是不可行的。
①  A.单链表
②  B.双链表
③  C.单循环链表
④  D.顺序表