参考答案和解析
正确答案:×
更多“[ ] One key to effective conflict-resolution is to deal with personalities rather than i ”相关问题
  • 第1题:

    A: Would you like to go to the cinema?

    B: I'd_____ not.

    A. prefer

    B. like

    C. rather


    参考答案:C

  • 第2题:

    I hope to be ______ your teacher ______ your good friend.

    A、not; but

    B、not only; but

    C、if; not

    D、rather; than


    参考答案:B

  • 第3题:

    I()reading novels()watching movies. I like my own imagination when I read them.

    Awouldrather;than

    Bprefer;to

    Cprefer;than


    B

  • 第4题:

    I'll go to one of these schools, but I don't know _______ one.

    A. what

    B. any

    C. which

    D. that


    参考答案:C 

  • 第5题:

    执行下列程序,显示的结果是【 】。

    ne="WORK"

    two=""

    a=LEN(one)

    i=a

    DO WHILE i>=l

    two=two+SUBSTR(one,i, 1)

    i=i-1

    ENDDO

    ?two


    正确答案:KROW
    KROW 解析:DO WHILE—ENDDO语句格式:
    DO WHILE条件>
    语句序列1>
    [LOOP]
    语句序列2>
    [EXIT]
    语句序列3>
    ENDDO
    执行该语句时,先判断DO WHILE处的循环条件是否成立,如果条件为真,则执行DO WHILE与ENDDO之间的命令序列(循环体)。当执行到ENDDO时,返回到DO WHILE,再次判断循环条件是否为真,以确定是否再次执行循环体。若条件为假,则结束该循环语句,执行ENDDO后面的语句。
    而常用函数中:LEN(字符表达式):返回一个字符串的长度,返回值是数值型。
    SUBSTR(字符表达式,起点位置[,长度]):在一个字符串中,从指定位置起返回给定长度的子串,返回值是字符型。

  • 第6题:

    分析下列程序的上界O和下界W。 for (i = 1; i < n; i++) key= a[i]; int j=i-1 while(j>=0 && a[j]>key ) a[j+1]=a[j] j- - a[j+1]=key 该程序时间复杂度的上界是O(____)、下界是W(_____)。


    n^4,n^4