It’s a problem that doesn ’ t need ( ) right now.A.to solveB.solvingC.being solvedD.to be solving

题目

It’s a problem that doesn ’ t need ( ) right now.

A.to solve

B.solving

C.being solved

D.to be solving


相似考题
更多“It’s a problem that doesn ’ t need ( ) right now.A.to solveB.solvingC.being solvedD.to ”相关问题
  • 第1题:

    Hello, everyone. I'd like to talk about myself. My name is Lily. I am an IT worker. I work at the ABC company in Shanghai. Now I am working as a trainee (实习) Information Technology Manager. I am in charge of about 45 people. I am here on my own. My family is in Hong Kong. I don't have any brothers, but I have a sister. She works on newspaper advertisements. She is now sitting in front of the TV set and watching me on TV in our house in Hong Kong. I believe, my mother and father are together with her too. I would like to say hello to my family. Hi, Mum and Dad! Hello, Rose! Can you see me and hear me clearly? I am now in the TV studio (演播室) of Shanghai TV Station. We are making a program about our company. These people around me are my colleagues. That one over there is our boss.

    (1). Lily works in IT.

    A、 Right.

    B、Wrong.

    C、Doesn't say.

    (2). Lily has got a big family in Hong Kong.

    A、 Right.

    B、Wrong.

    C、Doesn't say.

    (3). Lily is working on a training program in the TV studio of Shanghai TV Station.

    A、 Right.

    B、Wrong.

    C、Doesn't say.

    (4). Lily is going to be the IT Manager.

    A、 Right.

    B、Wrong.

    C、Doesn't say.

    (5). Lily's boss and her colleagues are in Shanghai now.

    A、 Right.

    B、Wrong.

    C、Doesn't say.


    参考答案:ABBCA

  • 第2题:

    设指针变量p指向双向链表中节点A,指针变量s指向被插入的节点X,则在节点A的后面插入节点X的操作序列为()

    A.p->right=s;s->left=p;p->right->left=s;s->right=p->right;
    B.p->right=s;p->right->left=s;s->left=p;s->right=p->right;
    C.s->left=p;s->right=p->right;p->right=s;p->right->left=s;
    D.s->left=p;s->right=p->right;p->right->left=s;p->right=s;

    答案:D
    解析:
    为了防止在插入节点时链表断裂,在修改指针时,需要先使s的后继指针指向p原来的后继节点,然后修改p的后继指针。

  • 第3题:

    设指针变量p指向双向链表中结点A,指针变量s指向被插入的结点X,则在结点A的后面插入结点X的操作序列为()

    A.p->right=s; s->left=p; p->right->left=s; s->right=p->right;

    B.s->left=p;s->right=p->right;p->right=s; p->right->left=s;

    C.p->right=s; p->right->left=s; s->left=p; s->right=p->right;

    D.s->left=p;s->right=p->right;p->right->left=s; p->right=s;


    D

  • 第4题:

    3.Jack _______like baseball ________volleyball.

    A. don't ; or

    B. doesn't ; or

    C.don't ;and

    D.doesn't ;and


    正确答案:B
    3.B【解析】不喜欢A和B,要说not like A or B.

  • 第5题:

    2、在循环双链表的p所指结点之后插入s所指结点的操作是()

    A.p->right=s;s->left=p;p->right->left=s;s->right=p->right;

    B.p->right=s;p->right->left=s;s->left=p;s->right=p->right;

    C.s->left=p;s->right=p->right;p->right=s;p->right->left=s;

    D.s->left=p;s->right=p->right; p->right->left=s;p->right=s;


    s->prior=p;s->next=p->next;p->next->prior=s;p->next=s;

  • 第6题:

    在循环双链表的p所指节点之后插入s所指节点的操作是

    A.p->right=s;s->left=p;p->right->left=s;s->right=p->right;

    B.s->left=p;s->right=p->right;p->right->left=s;p->right=s;

    C.s->left=p;s->right=p->right;p->right=s;p->right->left=s;

    D.p->right=s;p->right->left=s;s->left=p;s->right=p->right;


    s->prior=p;s->next=p->next;p->next->prior=s;p->next=s;