I work in a little room off the main entrance _____ museum, checking coats and other articles which people do not want to carry around as they tour the building.A:toB:ofC:atD:for

题目

I work in a little room off the main entrance _____ museum, checking coats and other articles which people do not want to carry around as they tour the building.

A:to

B:of

C:at

D:for


相似考题
更多“I work in a little room off the main entrance _____ museum, checking coats and other art ”相关问题
  • 第1题:

    classWorkimplementsRunnable{Threadother;Work(Threadother){this.other=other;}publicvoidrun(){try{other.join();}catch(Exceptione){}System.out.print("afterjoin");}}classLaunch{publicstaticvoidmain(String[]args){newThread(newWork(Thread.currentThread())).start();System.out.print("afterstart");}}结果为:()

    A.afterjoin

    B.afterstart

    C.afterjoinafterstart

    D.afterstartafterjoin


    参考答案:D

  • 第2题:

    下列程序的输出结果是______。

    Private Sub Command1_Click()

    Dim arr(1 To 10)

    For i=l TO 10

    arr(i)=i

    Next i

    For Each i In arr()

    art(i)=arr(i)*2+1

    Next i

    MsgBox arr(7)

    End Sub


    正确答案:15
    15 解析:题考查VBA中For Each...Next循环的知识。For Each...Next循环是一种特殊的循环,这种循环只能用在数组中,用来遍历数组中的每一个元素。本题中的第一个循环为数组的每个元素赋值,而第二个循环中更改了这些值。综合两个循环来看,实际上最后arr(i)的值为2*i+1。

  • 第3题:

    ()随操作面板上的按钮的ON/OFF而定。

    A.SI[i]

    B.G[i]

    C.R[i]

    D.UI[i]


    复位;R

  • 第4题:

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

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

  • 第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标记中的文本通常会保留空格和换行符,而文本也会呈现为等宽字体。

  • 第6题:

    输出信号SO[i]用于控制 的ON/OFF操作。


    正确