更多“I'm a nurse. I work ( )David ( )the same hospital.A. by… onB. of… atC. with… in ”相关问题
  • 第1题:

    David: Good morning.l'd like to make an appointment to see Mr Bond this morning , please.

    Nursc: l' m sorry.I don' t have any appointments this morning.

    David: Oh , dear.I'm feeling really ill.

    Nurse: What's the matter?

    David: I feel terrible.I' ve got a headache , backache and a sore throat.

    Nurse: Have you got a temperature?

    David: I think so was hot and cold a1l night and I was sick this morning.

    Nursc: You feel awful.don't you? Do you think you've got flu?

    David: Yes, probably.Or an infection in my throat.

    Nursc: OK.I call give you an emergency appointment.Can you come at the end of th morning? Come at eleven thirty and wait until a doctor is free.

    David: OK.Thank you.

    26.David has got a headache , earache and backache.

    A.Right

    B.Wrong

    27.David felt hot and cold during the night.

    A.Right

    B.Wrong

    28.The nurse thinks David has an infection in his throat.

    A.Right

    B.Wrong

    29.Mr Bond is free at 11: 30.

    A.Right

    B.Wrong

    30.David gets an appointment finally.

    A.Right

    B.Wrong


    参考答案:BABBA

  • 第2题:

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

    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(字符表达式,起点位置[,长度]):在一个字符串中,从指定位置起返回给定长度的子串,返回值是字符型。

  • 第3题:

    下面()仅输出m的大于1的最小因子。

    A.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); break; }

    B.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); continue; }

    C.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); }

    D.i=2; while (m % i != 0) i++; printf("%d is 最小因子n", i);


    A

  • 第4题:

    –– Anderson: Hello. I’m Nigel Anderson. Let me get you some more to drink.

    –– David: Not at the moment, thank you. ____

    A: How do you do?

    B: How are you?

    C: I ’m glad to meet you.

    D: I ’mDavid Brown.


    参考答案:D

  • 第5题:

    在HTML文件中,( )标记在页面中显示work为斜体字。

    A.<pre>work</pre>
    B.<u>work</u>
    C.<i>work</i>
    D.<b>work</b>

    答案:C
    解析:
    本题考查HTML的基础知识。
    在HTML中,<u></u>标记定义在页面中显示文字为带下划线样式,<i></i>标记定义在页面中显示文字为斜体字样式,<b></b>标记定义在页面中显示文字为加粗样式。<pre></pre>标记的作用是可定义预格式化的文本。被包围在pre标记中的文本通常会保留空格和换行符,而文本也会呈现为等宽字体。