更多“Slack ()head line.”相关问题
  • 第1题:

    下列哪项关于活动最晚开始时间的计算是正确的()。

    A、EF–Dur(持续时间)

    B、ES-Dur

    C、LF-Dur

    D、ES–Slack(松弛时间)

    E、LF-Slack


    参考答案:C

  • 第2题:

    从L=(),())中,取出banana元素的表达式为()。

    A、head(tail(L))

    B、head(head(tail(L)))

    C、tail(head(tail(L)))

    D、head(tail(head(tail(L))))


    参考答案:D

  • 第3题:

          A ________official is one who is irresponsible in his work.

          A) timid                                                       C)suspicious

          B) tedious                                                    D)slack


    选D

    本题考查形容词和名词搭配A slack official 马虎的官员。解题线索who is irresponsible in his work 对应slack 马虎的,松弛的,萧条的,清淡的;slack season淡季;be slack in doing sth. 做某事马虎;A) timid 胆小的,羞怯的;a timid reply战战兢兢的答复B) tedious 单调的,沉闷的;C) suspicious ( of ) 怀疑的,多疑的; a suspicious character 多疑的性格; arouse suspicion 引起怀疑;under suspicion 被怀疑;above / beyond suspicion 无可怀疑。

    [译文] 马虎的官员对工作不负责任的官员。

  • 第4题:

    设广义表L=(soldier,(teacher,student),(worker,farmer)),head和tail函数把原子student从广义表L中分离出来的运算是(17)。

    A.tail(head(tail(head(L))))

    B.head(tail(head(Tail(L))))

    C.tail(head(tail(head(L))))

    D.head(tail(tail(head(L))))


    正确答案:B

  • 第5题:

    设单链表表头指针为head,现将指针P指向的结点插入表中,使之成为第一个结点,其操作是 ______。其中p^. next、head^.next分别表示p、head所指结点的链域。

    A.p^. next:=head^. next;head^. next:=p

    B.p^. next:=head^. next;head:=p

    C.p^. next:=head;head:=p

    D.head^. next:=head;p:=head


    正确答案:C
    解析:将p插入单链表的操作是:先将p->next值赋为表头指针指向的结点,然后将表头指针改为p.

  • 第6题:

    Pick up ()on the forward spring !

    • A、the slack
    • B、slacking
    • C、a slack

    正确答案:A

  • 第7题:

    *hear之前插入节点*s的操作是()

    • A、s->next=head;head=s;
    • B、s->next=head->next;head->next=s;
    • C、head=s;s->next=head;
    • D、head->next=s;s->next=head->next;

    正确答案:A

  • 第8题:

    带头结点的单链表head为空的判定条件是()。

    • A、head==NULL
    • B、head->next==NULL
    • C、head->next!=NULL
    • D、head!=NULL

    正确答案:B

  • 第9题:

    松出一点!()

    • A、Hold on a little bit!
    • B、Take in the slack a little bit!
    • C、Slack away a little bit!
    • D、Heave in the slack a little bit!

    正确答案:C

  • 第10题:

    Take in the slack on ()(尾缆)!

    • A、breast line
    • B、heavy line
    • C、stern line
    • D、head line

    正确答案:C

  • 第11题:

    单选题
    Your vessel is listing 4° to port and has a short rolling period. There is loose firefighting water in the hull. The ship is trimmed down by the head with one foot of freeboard at the bow. Which action should you take FIRST?()
    A

    Press up the slack NO.1 starboard double bottom tank

    B

    Pump out the forepeak tank

    C

    Eliminate the water in the 'tween decks aft


    正确答案: C
    解析: 暂无解析

  • 第12题:

    单选题
    删除*(head->next)的操作是()
    A

    p=head->next;head->next=head->next->next;delete p;

    B

    head->next=head->next->next;p=head->next;delete p;

    C

    p=head;head=head->next;delete p;

    D

    head=head->next;p=head;delete p;


    正确答案: A
    解析: 暂无解析

  • 第13题:

    已知广义表ls=(a,(b,c,d),e),运用head和tail函数取出ls中原子b的运算是( )。

    A.head(head(ls))

    B.tail(head(ls))

    C.head(head(tail(ls)))

    D.head(tail(ls))


    参考答案:C

  • 第14题:

    带有头结点的单循环链表的头指针为head,则该链表为空的判定条件是()。

    A、head==NUL

    B、head-next==NULL

    C、head!=NULL

    D、head-next==head


    参考答案:D

  • 第15题:

    __(41)__是正确的网页代码结构。A. </html> </head> </body>B.

    __(41)__是正确的网页代码结构。

    A.<html> </html> <head> </head> <body> </body>

    B.<tml> < head > <body> </body> < /head > < /html >

    C.<html> < head > < /head > <body> </body> < /html >

    D.<html> <body> < head > < /head > </body> < /html >


    正确答案:C
    此题考查了THML网页的基本代码结构,其格式为:html>head>/head>body>/body>/html>

  • 第16题:

    设有指针head指向的带表头结点的单链表,现将指针p指向的结点插入表中,使之成为第一个结点,其操作是______其中p^.next、head^.next分别表示p、head所指结点的链域。

    A.p^.next:=head^.next; head^.next:=p

    B.p^.next:=head^.next; head:=p

    C.p^.next:=head; head:=p

    D.head^.next:=head; p:=head


    正确答案:A
    解析:注意本链表是带表头附加结点的,因此表头结点的指针head^.next将指针为p的结点插入表头,即将原表头结点指针head^.next赋值给p所指向结点的链域p^.next,然后把p赋值给表头附加结点的链域head^.next。也就是两步撮作:p^.next:=head^.next;head^.next:=p。答案为选项A。

  • 第17题:

    “Ease the strain on the stern line” means “()”!

    • A、Heave away the stern line.
    • B、Take in the stern line.
    • C、Slack the stern line.
    • D、Heave in the stern line.

    正确答案:C

  • 第18题:

    删除*(head->next)的操作是()

    • A、p=head->next;head->next=head->next->next;delete p;
    • B、head->next=head->next->next;p=head->next;delete p;
    • C、p=head;head=head->next;delete p;
    • D、head=head->next;p=head;delete p;

    正确答案:A

  • 第19题:

    带头结点的循环单链表head为空的判断条件是()

    • A、 head == NULL
    • B、 head != NULL
    • C、 head->next == head
    • D、 head->next == NULL

    正确答案:C

  • 第20题:

    This mooring line is a little slack. Please ()it.

    • A、fast
    • B、fasten
    • C、slack away
    • D、slack

    正确答案:B

  • 第21题:

    Slack ()the head line !

    • A、down
    • B、in
    • C、out
    • D、away

    正确答案:D

  • 第22题:

    头缆上车!()

    • A、Put head line on winch!
    • B、Put stern line on winch!
    • C、Hold on head line!
    • D、Heave in head line.

    正确答案:A

  • 第23题:

    单选题
    多松一点。()
    A

    Give us plenty of slack.

    B

    Give us a little slack.

    C

    Give us less slack.

    D

    Give us a bit slack.


    正确答案: A
    解析: 暂无解析