itgle.com

publicclassBar{11.staticvoidfoo(int...x){12.//insertcodehere13.}14.}Which two code fragments,inserted independently at line1 2,will allow the class to compile()A.foreach(x)System.out.println(z);B.for(intz:x)System.out.println(z);C.while(x.hasNext())System

题目
publicclassBar{11.staticvoidfoo(int...x){12.//insertcodehere13.}14.}Which two code fragments,inserted independently at line1 2,will allow the class to compile()

A.foreach(x)System.out.println(z);

B.for(intz:x)System.out.println(z);

C.while(x.hasNext())System.out.println(x.next());

D.for(inti=0;i


相似考题
参考答案和解析
参考答案:B, D
更多“publicclassBar{11.staticvoidfoo(int...x){12.//insertcodehere13.}14.}Which two code fragments,inserted independently at line1 2,will allow the class to compile() ”相关问题
  • 第1题:

    classSuper{2.privateinta;3.protectedSuper(inta){this.a=a;}4.}.....11.classSubextendsSuper{12.publicSub(inta){super(a);}13.publicSub(){this.a=5;}14.}Whichtwo,independently,willallowSubtocompile?()

    A.Changeline2to:publicinta;

    B.Changeline2to:protectedinta;

    C.Changeline13to:publicSub(){this(5);}

    D.Changeline13to:publicSub(){super(5);}

    E.Changeline13to:publicSub(){super(a);}


    参考答案:C, D

  • 第2题:

    为了将HelloApplet(主类名为HelloApplet.class)嵌入在greeting.html文件中,应该在下列greeting.html文件的横线处填入的代码是( )。

    A.(elloApplet.class

    B.CODE=”(elloApplet.class”

    C.CODE=”(elloApplet.class”WIDTH=150HEIGHT=25

    D.CODE=”(elloApplet.class”VSPACE=10HSPACE=10


    正确答案:C
    在html页中包含Applet时,C()DE=ap-pletfile指定了包含Applet或JApplet字节码的文件名,WIDTH=pixelsHEIGHT=pixels定义了Applet显示区以像素为单位的高度和宽度。

  • 第3题:

    本课中搭建神经网络六步法包括如下步骤: 1、import 2、train, test 3、Sequential / Class 4、model.compile 5、model.fit 6、model.summary


    正确

  • 第4题:

    [A] stages

    [B] illusions

    [C] fragments

    [D] advances


    正确答案:B

  • 第5题:

    为了将HelloApplet(主类名为HelloApplet.class)嵌入在greetmg.html文件中,应该在下列greeting.html文件的横线处填入的代码是( )。 <HTML> <HEAD> <TITLE>Greetings</TITLE> </HEAD> <BODY> <APPLET______"> </APPLET> </BODY> </HTML>

    A.HellOApplet.class

    B.CODE="HellOApplet.class"

    C.CODE="HelloApplet.class"WIDTH=150 HEIGHT=25

    D.CODE="HelloApplet.class"VSPACE=10HSPACE=10


    正确答案:C
    解析:在html页中包含Applet时,CODE=appletfile指定了包含Applet或JApplet字节码的文件名,WIDTH=pixels HEIGHT=pixels定义了Applet显示区以像素为单位的高度和宽度。