更多“The underlined word “ There” in the second paragraph refers to (指的是)____________. ”相关问题
  • 第1题:

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

    first="china"

    second=""

    a=LEN(first)

    i=a

    DO WHILE i>=1

    second=second+SUBSTR(first,i,1)

    i=i-1

    ENDDO

    ?second


    正确答案:anihc
    anihc 解析:变量a使用LEN函数取得字符串变量first的长度,该变量包含5个字母,所以它的长度为5,即a=5,然后将a的值赋给i,那么i也等于5。使用一个DO WHILE循环语句来操作,判断条件是变量i是否大于等于0,如果小于0,则退出循环,否则执行循环体。此时SUBSTR(first,5,1)的值为a,(从“china”字符串的第5位开始取一位字符);执行i=i-1后,i=4,重复此循环体的操作,变量second的值依次为a、an、ani、anih,anihc,最后i0,退出循环体。

  • 第2题:

    数据传输速率是描述数据通信的基本技术参数之一,它的单位是______。

    A.bit/second(bps)

    B.Byte/second(Bps)

    C.KByte/second(KBps)

    D.MByte/second(MBps)


    正确答案:A
    解析:数据传输速率,或称数据率是描述数据通信的重要技术参数之一。它是指每秒传输的二进制代码(比特)位数,单位为比特/秒(bps,bit/second)。如果一个电脉冲信号只有“0”和“1”两个状态,即一个电脉冲信号表示一个二进制数位(比特),设r为传输的电脉冲信号的周期。则:数据传输速率S=I/T(bps)。

  • 第3题:

    Which paragraph gives an account of the way electrochromic windows changing?

    A.Paragraph 5.
    B.Paragraph 3.
    C.Paragraph 4.
    D.Paragraph 6.

    答案:A
    解析:

  • 第4题:

    下面程序的输出结果是______。 include using namespace std; int x; void funA(int&am

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

    include<iostream>

    using namespace std;

    int x;

    void funA(int&,int);

    void funB(int,int&);

    int main()

    {

    int first;

    int second=5;

    x=6;

    funA(first,second);

    funB(first,second);

    cout<<first<<””<<second<<””<<x<<endl;

    return 0;

    }

    void funA(int &a,int b)

    {

    int first;

    first=a+b;

    a=2*b;

    b=first+4;

    }

    void funB(int u, int &v)

    {

    int second;

    second=x;

    v=second+4;

    x=u+v;

    }


    正确答案:10 10 20
    10 10 20 解析:本题考核函数的引用传递。“引用”实际上是给一个已知变量起个别名,对引用的操作也就是对被它引用的变量的操作。函数funA的功能是将第二个实参的值乘以2再赋值给第一个实参(通过引用传递实现),函数funB的功能是将全局变量x加上4再赋值给第二个实参,同时x等于第一个实参与第二个实参相加的和。

  • 第5题:

    In a flash type evaporator, all saltwater heaters are vented through individual vent cocks to the ______.

    A.saltwater heater shell

    B.second-stage condenser

    C.atmosphere

    D.second-stage flash chamber


    正确答案:C

  • 第6题:

    下列选项中,哪个声明可用来给元素添加下划线()

    A.text-indent:underline

    B.text-decoration:underline

    C.text-transform:underline

    D.text-align:underline


    D