更多“- What' s the weather like in Shanghai today? It' s rainy. ”相关问题
  • 第1题:

    - ()- Today’s rate is listed on the board here.

    A、What’s the exchange rate today

    B、What kind of currency do you want to exchange for

    C、What’s the amount you’d like to exchange


    参考答案:A

  • 第2题:

    以下语句的输出结果【 】。

    S$= "China"

    S$= "Shanghai"。

    Print S$


    正确答案:Shanghai
    Shanghai 解析:s$的最终值是Shanghai,所以输出的应该是Shanghai。

  • 第3题:

    在Access中已经建立了"学生"表,若查找"学号"是"S00011"或"S00012"的记录,应在查询设计视图的"条件"行中输入()。

    A.("S00011" or "S00012")

    B.Like("S00011","S00012")

    C."S00011" and "S00012"

    D.like "S00011" and like "S00012"


    在Access数据库中已经建立了“学生”表,若在数据表视图中显示该表姓“张”的记录,应使用Access的( )。

  • 第4题:

    What’s ____ in the bone will come out in the flesh.

    A、bred

    B、inserted

    C、raised

    D、broken


    正确答案:A

  • 第5题:

    Given:What,insertedatline39,willsortthekeysinthepropsHashMap?()

    A.Arrays.sort(s);

    B.s=newTreeSet(s);

    C.Collections.sort(s);

    D.s=newSortedSet(s);


    参考答案:B

  • 第6题:

    以下选项给字符数组str赋初值,其中str不能作为字符串使用的是____。

    A.char str[ ]= "shanghai";

    B.char str[8]={ 's','h','a','n','g','h','a','i'};

    C.char str[ ]={ "shanghai"};

    D.char str[9]={'s','h','a','n','g','h','a','i'};


    A 解析:选项A定义了一个字符数组str,具有5个元素,但赋初值的时候,初值个数却是6个(有一个'\\0',);选项B定义了一个字符数组str并给它赋初值,由于省去了长度定义,长度由初值个数确定,相当于str[6];选项C定义了一个字符型指针变量并用一个字符串给它赋初值,使该字符型指针指向了该字符串;选项D是对字符型数组中单个元素依次赋初值。