参考答案和解析
正确答案:C
更多“____ right now, she would not be late for the class. ”相关问题
  • 第1题:

    He got up so late that he missed the school bus.(改为同义句)

    He got up________ late________ ________the school bus.


    正确答案:
    39. too;to catch 

  • 第2题:

    Should the vessel have no deratisation certificate at the time of her delivery,she ______ be held to be unseaworthy.

    A.shall

    B.should

    C.may

    D.would


    正确答案:D

  • 第3题:

    —She‘s broken her arm again.
    —Again I______she_______ever broken it before.

    A.don‘t know;has
    B.didn’t know;had
    C.didn‘t know;has
    D.hadn’t know;would

    答案:B
    解析:

  • 第4题:

    ________ the vessel have no safety radiotelegraphy certificate at the time of her delivery,she ________ be held to be unseaworthy.

    A.If/may

    B.Will/shall

    C.Should/would

    D.Would/should


    正确答案:C

  • 第5题:

    —She‘s broken her arm again.
    —Again I______she_______ever broken it before.

    A.don‘t know;has
    B.didn’t know;had
    C.didn‘t know;has
    D.hadn’t know;would

    答案:B
    解析:

  • 第6题:

    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;