参考答案和解析
参考答案:对
更多“acclamation is a loud expression of approval or welcome.() ”相关问题
  • 第1题:

    在switch(expression)语句中,expression的数据类型不能是( )。

    A.double

    B.char

    C.byte

    D.short


    正确答案:A
    本题考查考生对switch(expression)语句的理解。表达式expression只能返回int、byte、short和char,题目中的double是不正确的。同时还要注意,多分支结构中,case子句的值必须是常量,而且所有case子句中的值应是不同的,default子句是任选的。

  • 第2题:

    在switch(expression)语句中,expression的数据类型不能是( ),

    A.double

    B.char

    C.byte

    D.short


    正确答案:A
    解析:本题考查考生对switheh(expression)语句的理解。表达式expression只能返回:int、 byte、short和char,题目中的double是不正确的。同时还要注意,多分支结构中,case子句的值必须是常量,而且所有case子句中的值应是不同的,default子句是任选的。

  • 第3题:

    18、4. 既清新又响亮,既简洁又抢眼的主题能吸引与会者、参展者和赞助商。

    A.A fresh, loud, concise and eye-catching theme can attract attendees, exhibitors and sponsors.

    B.A new, loud, simple and showy theme can attract attendees, exhibitors and sponsors.

    C.A fresh, loud, concise and eye-catching theme can attract exhibitors, attendees, and sponsors.

    D.A new, loud, simple and showy theme can attract exhibitors, attendees, and sponsors.


    C

  • 第4题:

    在switch(expression)语句中,expression的数据类型不能是( )。

    A.double

    B.char

    C.byte

    D.short


    正确答案:A
    解析: 本题考查考生对swithch(expression)语句的理解。表达式expression只能返回:int、bvte、short和char,题目中的double是不正确的。同时还要注意,多分支结构中,case子句的值必须是常量,而且所有case子句中的值应是不同的,default子句是任选的。

  • 第5题:

    在switch(expression)语句中,expression的数据类型不能是( )。 A.doubleB.char

    在switch(expression)语句中,expression的数据类型不能是( )。

    A.double

    B.char

    C.byte

    D.short


    正确答案:A
    A。【解析】本题考查考生对switch(expression)语句的理解。表达式expression只能返回int、byte、short和char,题目中的double是不正确的。同时还要注意,多分支结构中,case子句的值必须是常量,而且所有case子句中的值应是不同的,default子句是任选的。

  • 第6题:

    for重复结构处理计数器控制循环的所有细节。for结构的一般格式如下: for(expression1, expression2, expression3) statement 其中expression1初始化循环控制变量,expression2是循环条件,expression3递增控制变量。


    B