【单选题】【消耗次数:1】
Some of the employees in the company are to work at flexible hours.
taken
achieved
allowed
formed
参考答案:
复制
纠错
相关题目
【单选题】 Some companies have introduced flexible working time with less emphasis on pressure ____.
①  than more on efficiency
②  and more on efficiency
③  and more efficiency
④  than efficiency
【判断题】 It take me two hours to finish my work today.
①  正确
②  错误
【单选题】 It took us ______ less than three hours to do the work.
①  no
②  not
③  none
④  nothing
【判断题】 Paul and I are in the same company. We goes to work together.
①  正确
②  错误
【判断题】 A: What do you do, Polly? B: I work for an IT company.
①  正确
②  错误
【单选题】 These candidates have vague notions of serving the company, [] they have never taken trouble to find out the actual tasks they will be required to do.
①  or
②  and
③  but
④  so
【单选题】 If they ___ to do this work, he might do it some other way.
①  were
②  should
③  will
④  can
【单选题】 If they______to do this work,he might do it some other way.
①  were
②  should
③  will
④  can
【单选题】 1. If they ______ to do this work, he might do it some other way.
①  were
②  should
③  will
④  can
【单选题】 Id like?to?think?I?can?do?some?work?that?will?( )?international?cooperation?andunderstanding.
①  contribute at
②  contribute in
③  contribute of
④  contribute to
随机题目
【单选题】 循环队列的队头和队尾指针分别为front和rear,则判断循环队列为空的条件是( )。
①  front==rear
②  front==0
③  rear==0
④  front=rear+1
【单选题】 设计一个判别表达式中括号是否配对的算法,采用( )数据结构最佳。
①  顺序表
②  链表
③  队列
④ 
【单选题】 队列的插入操作是在( )。
①  队尾
②  队头
③  队列任意位置
④  队头元素后
【单选题】 在一个链队列中,假定front和rear分别为队首和队尾指针,则删除一个结点的操作为( )。
①  front=front->next
②  rear=rear->next
③  rear=front->next
④  front=rear->next
【单选题】 依次在初始为空的队列中插入元素a,b,c,d以后,紧接着做了两次删除操作,此时的队头元素是( )。
①  a
②  b
③  c
④  d
【单选题】 将递归算法转换成对应的非递归算法时,通常需要使用( )来保存中间结果。
①  队列
② 
③  链表
④ 
【单选题】 队和栈的主要区别是( )。
①  逻辑结构不同
②  存储结构不同
③  所包含的运算个数不同
④  限定插入和删除的位置不同
【单选题】 在具有n个单元的顺序存储的循环队列中,假定front和rear分别为队头指针和队尾指针,则判断队满的条件为( )。
①  rear%n= = front
②  (front+l)%n= = rear
③  rear%n -1= = front
④  (rear+l)%n= = front
【单选题】 带头结点的单链表head为空的判定条件是( )。
①  head==NULL
②  head->next==NULL
③  head->next!=NULL
④  head!=NULL
【单选题】 栈的插入和删除操作在( )。
①  栈底
②  栈顶
③  任意位置
④  指定位置