itgle.com
更多“●Which is the second layer from the bottom in Open System Interconnection Reference Model? ”相关问题
  • 第1题:

    下列代码中 d(x>0)(System.out.Pdntln("first");} else if(x>-3){System.out.pnntln("second");} else{System.out.pdlldn("third");)要求打印字符串为"second"时,x的取值范围是( )。

    A.x<=0并且x>-3

    B.x>O

    C.x>-3

    D.x<=-3


    正确答案:A

  • 第2题:

    2给出下面代码段,x处于( )范围时打印字符串“second”。 pubhc class forLoopStatement{ public static voidmain(String[]args){ int x=______;//给x赋值 if(x>0) {System.out.println("second"); } else if(x>-3) {System.out.println("second"); } else { System.out.printlnCthird"); } } }

    A.x>0

    B.x>-3

    C.x<=-3

    D.x<=0 & x>-3


    正确答案:D

  • 第3题:

    下列代码中 if(x>O){System.out.println("first");} elseif(x>-3){System.out.println("second");) else{System.out.println("third");) 要求打印字符串为“second”时,X的取值范围是( )。

    A.x<=0且x>-3

    B.x>0

    C.x>-3

    D.x<=-3


    正确答案:A
    A【解析】本题考查Java中的条件结构。条件语句根据判定条件的真假来决定执行哪一种操作。题目所给程序,如果x>0,则直接执行其后的System.out.println("first")语句,而不执行elseif等语句,当x<-0且x>-3时执行System.out.println("second")语句,所以选项A正确。当x为其他值时执行else语句。应该对Java的流程控制涉及的语句有所掌握,这些都是考试重点内容。

  • 第4题:

    You will want two trees about ten feet apart, from _____ to suspend your tent.

    (A) there (C) which

    (B) them (D) where

     

     


    选D

    可改写为you will want two tress about ten feet apart, to suspend your tent from.
    只要有介词摆在空格之前,选项是which, them ,there ,where肯定是which
    介词+which+动词不定式,整体做定语

  • 第5题:

    You will want two trees about ten feet apart, 选择

    You will want two trees about ten feet apart, from _____ to suspend your tent.

    (A) there                         (C) which

    (B) them                              (D) where

     


    选择D
    可改写为you will want two tress about ten feet apart, to suspend your tent from.
    只要有介词摆在空格之前,选项是which, them ,there ,where肯定是which
    介词+which+动词不定式,整体做定语

  • 第6题:

    给出下列代码片段: if(x>0){System.out.println("first");} else if(x>-3){System.out.println("second");} else{System.out.println("third");} 当x处于( )范围时打印字符串"second"。

    A.x>0

    B.x>-3

    C.-3<x<=0

    D.x<=-3


    正确答案:C