194 Using the data shown in the Special window, Activities P, Q, and T are critical path activities. In order to shorten the time duration of the project, which activity should be "crashed" first?A. PB. QC. RD. SE. T

题目

194 Using the data shown in the Special window, Activities P, Q, and T are critical path activities. In order to shorten the time duration of the project, which activity should be "crashed" first?

A. P

B. Q

C. R

D. S

E. T


相似考题
更多“194Using the data shown in the Special window, Activities P, Q, and T are critical path ac ”相关问题
  • 第1题:

    设指针变量p指向单链表中结点A,若删除单链表中结点A,则需要修改指针的操作序列为()。

    A.q=p->next;p->data=q->data;p->next=q->next;free(q);
    B.q=p->next;p->data=q->data;free(q);
    C.q=p->next;p->next=q->next;free(q);
    D.q=p->next;q->data=p->data;p->next=q->next;free(q);

    答案:A
    解析:
    应先使指针q指向结点A之后的结点,以防链表断裂,然后删除结点q,最后将删除的结点q的存储空间释放。

  • 第2题:

    删除单链表中指针p所指结点的语句序列为()。

    A.q=p->next; p->data=q->data; p->next=q->next; free(q);

    B.q=p->next; q->data=p->data; p->next=q->next; free(q);

    C.q=p->next; p->next=q->next; free(q);

    D.q=p->next; p->data=q->data; free(q);


    q->,next

  • 第3题:

    2、有如下变量定义,则对data中的a的正确引用是:struct sk { int a; float b; } data, *p=&data;

    A.(*p).data.a

    B.(*p).a

    C.p->data.a

    D.p.data.a


    (*p).a

  • 第4题:

    有如下变量定义,则对data中的a的正确引用是:struct sk { int a; float b; } data, *p=&data;

    A.(*p).data.a

    B.(*p).a

    C.p->data.a

    D.p.data.a


    (*p).a

  • 第5题:

    设指针变量p指向单链表中结点A,若删除单链表中结点A,则需要修改指针的操作序列为()

    A.q=p->next;p->data=q->data;p->next=q->next;free(q);

    B.q=p->next;q->data=p->data;p->next=q->next;free(q);

    C.q=p->next;p->next=q->next;free(q);

    D.q=p->next;p->data=q->data;free(q);


    A

  • 第6题:

    2、设指针变量p指向单链表中结点A,若删除单链表中结点A,则需要修改指针的操作序列为()

    A.q=p->next;p->data=q->data;p->next=q->next;free(q);

    B.q=p->next;q->data=p->data;p->next=q->next;free(q);

    C.q=p->next;p->next=q->next;free(q);

    D.q=p->next;p->data=q->data;free(q);


    p->next=s