注意:此页面搜索的是所有试题
国家开放大学移动开发技术导论
给出下面代码,关于该程序以下哪个说法是正确的? ( )public class Person(){static int arr[] = new int[5];public static void main(String a[]){System.out.println(arr[0]); }}
单选题 (1 分) 1分
A.编译时将产生错误
B.编译时正确,运行时将产生错误
C.输出零
D.输出空
能够在同一包中的其他类中访问该类的成员,至少要在该成员声明时采用以下那种修饰符?( )
单选题 (1 分) 1分
A.public
B.private
C.protected
D.transient
E.default access
请问,以下哪些是声明一个方法抛出异常的正确形式?请选择一个正确答案: ( )
单选题 (1 分) 1分
A.void m() throws IOException{}
B.void m() throw IOException{}
C.void m(void) throws IOException{}
D.m() throws IOException{}
E.void m() {} throws IOException
定义一个父类person,以及继承了person的子类student,在父类中定义不少于两个方法,在子类中重写父类的至少一个方法,在main()方法中调用子类体现重写关系。
简述O2O业务过程。
单选题 (1 分) 1分
A.编译时将产生错误
B.编译时正确,运行时将产生错误
C.输出零
D.输出空
能够在同一包中的其他类中访问该类的成员,至少要在该成员声明时采用以下那种修饰符?( )
单选题 (1 分) 1分
A.public
B.private
C.protected
D.transient
E.default access
请问,以下哪些是声明一个方法抛出异常的正确形式?请选择一个正确答案: ( )
单选题 (1 分) 1分
A.void m() throws IOException{}
B.void m() throw IOException{}
C.void m(void) throws IOException{}
D.m() throws IOException{}
E.void m() {} throws IOException
定义一个父类person,以及继承了person的子类student,在父类中定义不少于两个方法,在子类中重写父类的至少一个方法,在main()方法中调用子类体现重写关系。
简述O2O业务过程。