【单选题】【消耗次数:1】
Hitler was wrong and we should ______ to help Russia.
go out all@go all out
make out all
make all out
参考答案:
复制
纠错
相关题目
【判断题】 A: Shall we go out for a picnic tomorrow then? B: Its all up to you
①  正确
②  错误
【单选题】 All medicines should be kept out of____ of children.
①  touch
②  reach
③  get
④  attain
【单选题】 Some handicapped people may be ______ to go out at all and a visitor is more than welcome.
①  able
②  unable
③  disable
④  disabled
【单选题】 Hitler was however wrong and we should ______ to help Russia.
①  make all out
②  make out all
③  go all out
④  go out all
【单选题】 They couldn’t ______ to fly out to see us, and we couldnt either. We were all poor then.
①  offer
②  afford
③  provide
④  supply
【单选题】 27. If it ____ tomorrow, we will not go out.
①  rains
②  will rain
③  is going to rain
④  is to rain
【单选题】 We’ll go out as soon as I’ve ____ the kitchen.
①  sent for
②  cleaned up
③  done with
④  worked out
【单选题】 A: Shall we go out for dinner tonight? B: [填空].
①  You are right
②  Have a nice time
③  Thats a good idea
④  My pleasure
【判断题】 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
随机题目
【单选题】 若有18个元素的有序表存放在一维数组A[19]中,第一个元素放A[1]中,现进行二分查找,则查找A[3]的比较序列的下标依次为()
①  1,2,3
②  9,5,2,3
③  9,5,3
④  9,4,2,3
【单选题】 设一组权值集合W=(15,3,14,2,6,9,16,17),要求根据这些权值集合构造一棵哈夫曼树,则这棵哈夫曼树的带权路径长度为()。
①  129
②  219
③  189
④  229
【单选题】 设无向图G中的边的集合E={(a,b),(a,e),(a,c),(b,e),(e,d),(d,f),(f,c)},则从顶点a出发进行深度优先遍历可以得到的一种顶点序列为()。
①  aedfcb
②  acfebd
③  aebcfd
④  aedfbc
【单选题】 设指针q指向单链表中结点A,指针p指向单链表中结点A的后继结点B,指针s指向被插入的结点X,则在结点A和结点B插入结点X的操作序列为()。
①  s-next=p-next;p-next=-s
②  q-next=s;s-next=p
③  p-next=s-next;s-next=p
④  p-next=s;s-next=q
【单选题】 设二叉排序树上有n个结点,则在二叉排序树上查找结点的平均时间复杂度为()。
①  O(n)
②  O(n2)
③  O(nlog2n)
④  O(1og2n)
【单选题】 设有6个结点的无向图,该图至少应有()条边才能确保是一个连通图。
①  5
②  6
③  7
④  8
【单选题】 若线性表最常用的操作是存取第i个元素的值,则采用_______存储方式节省时间。
①  单链表
②  双链表
③  单循环链表
④  顺序表
【单选题】 设指针变量front表示链式队列的队头指针,指针变量rear表示链式队列的队尾指针,指针变量s指向将要入队列的结点X,则入队列的操作序列为()。
①  front-next=s;front=s;
②  s-next=rear;rear=s;
③  rear-next=s;rear=s;
④  s-next=front;front=s;
【单选题】 设s1=“”,则strlen(s1)的值是
①  0
②  1
③  2
④  3
【单选题】 在n个结点的顺序表中,算法的时间复杂度是O(1)的操作是
①  访问第i个结点(1≤i≤n)
②  在第i个结点后插入一个新结点(1≤i≤n)
③  删除第i个结点(1≤i≤n)
④  将n个结点从小到大排序