A.a
B.b
C.编译失败
D.运行时抛出异常
第1题:
在PowerPoint中,若想给“文本框”对象或“文本框占位符”设置动画效果,下列说法正确是()。
A.执行quot格式quot菜单的quot幻灯片设计quot命令,右侧有一个相应的设置窗格
B.执行quot幻灯片反映quot菜单的quot自定义动画quot命令,右侧有一个相应的设置窗格
C.执行quot格式quot菜单的quot幻灯片版式quot命令,右侧有一个相应的设置窗格
D.以上说法全错
第2题:
A.1
B.2
C.Anexceptionisthrownatruntime.
D.Compilationfailsbecauseofanerrorinline8.
E.Compilationfailsbecauseofanerrorinline14.
第3题:
给出—卜列的代码,则下列选项中( )可以表示为类A合理的内部类。 class A{ protected int i; A (int i) { this i=i; }}
A.class B{ }
B.class B extends A{ }
C.class B extends A{ B ( ){System.out.println("i="+i);} }
D.class A{ }
第4题:
classA{publicA(){System.out.println(hellofroma”);}}classBextendsA{publicB(){System.out.println(hellofromb”);super();}}publicclassTest{publicstaticvoidmain(Stringargs[]){Aa=newB();}}Whatistheresultwhenmainisexecuted?()
A.Compilationfails.
B.hellofroma
C.hellofromb
D.hellofrombhellofroma
E.hellofromahellofromb
第5题:
给出下列的代码,则下列选项中哪个是类A合理的内部类? class A { protected int i; A(int i) { this.i=i; } }
A.class B { }
B.class B extends A { }
C.class B extends A { B( ){System.out.println("="+i);} }
D.class A { }