欢迎光临
我们一直在努力

川农《JAVA语言基础(本科)》19年12月在线作业【满分答案】

可做奥鹏国开全部院校作业论文!答案请添加qq:599792888 或 微信:1095258436

《JAVA语言基础(本科)》19年12月在线作业题目

试卷总分:100  得分:100

一、单选题 (共 20 道试题,共 100 分)

1.关于以下代码所画图形的说明,正确的是()g.setColor(Color.black); g.drawLine(10,10,10,50);g.setColor(Color.red); g.drawRect(100,100,150,150)

A.一条50像素长的垂直黑线,一个边长为150像素的红色四方形

B.一条50像素长的垂直红线,一个边长为150像素的红色四方形

C.一条40像素长的垂直黑线,一个边长为150像素的红色四方形

D.一条40像素长的垂直红线,一个边长为150像素的红色四方形

 

2.以下选项中循环结构合法的是( )

A.while (int i<7) {i++;System.out.println(“i is “+i); }

B.int j=3; while(j) { System.out.println(“ j is “+j); }

C.int j=0; for(int k=0; j + k !=10; j++,k++){ System.out.println(“ j is “+ j + “k is”+ k); }

D.int j=0; do{System.out.println( “j i

 

3.关于被私有保护访问控制符private protected修饰的成员变量,以下说法正确的是( )

A.可以被两种类访问和引用:该类本身、该类的所有子类

B.可以被三种类所引用:该类自身、与它在同一个包中的其他类、在其他包中的该类的子类

C.只能被该类自身所访问和修改

D.只能被同一个包中的类访问

 

4.以下选项中循环结构合法的是()

A.while (int i<7) { i++; System.out.println(“i is “+i); }

B.int j=3; while(j) { System.out.println(“ j is “+j); }

C.int j=0; for(int k=0; j + k !=10; j++,k++) { System.out.println(“ j is “+ j + “k is”+ k); }

D.int j=0; do{ Syst

 

5.类Test1定义如下: public class Test1{public float aMethod(float a,float b){ } }将以下哪种方法插入行3是不合法的。( )

A.public int aMethod(int a, int b){ }

B.public float aMethod(float c,float d){ }

C.public float aMethod(float a, float b,float c){ }

D.private float aMethod(int a,int b,int c){ }

 

6.main方法是Java Application程序执行的入口点,关于main方法的方法头以下哪项是合法的( )

A.public void main(String arg[ ])

B.public static void main(String[ ] args)

C.public static void main()

D.public static int main(String[ ] arg)

 

7.编译运行以下程序后,关于输出结果的说明正确的是 ( )public class Conditional{public static void main(String args[ ]){ int x=4; System.out.println(“value is “+ ((x>4) ? 99.9 :9)); }}

A.输出结果为:value is 99.99

B.输出结果为:value is 9.0

C.输出结果为:value is 9

D.编译错误

 

8.以下哪个表达式是不合法的( )

A.String x=null; int y=(x!=null)&&(x.length()>0) ? x.length : 0

B.String x=”Hello”; int y=9; x+=y;

C.String x=”Hello”; int y=9; x=x+y;

D.String x=”Hello”; int y=9; if(x= =y) { }

 

9.以下代码完成画线功能,指出所画线的颜色()g.setColor(Color.red.green.yello.cyan); g.drawLine(0,0,100,100);

A.yello

B.red

C.green

D.cyan

 

10.以下哪项可能包含菜单条()

A.Panel

B.Frame

C.Dialog

D.Applet

 

11.以下哪项可能包含菜单条( )

A.Panel

B.Frame

C.Dialog

D.Applet

 

12.以下代码段执行后的输出结果为()int x=3; int y=10; System.out.println(y%x);

A.3

B.2

C.1

D.0

 

13.以下说法哪项是正确的( ) class MyListener extends MouseAdapter implements MouseListener{ public void mouseEntered(MouseEvent mev) { System.out.println(“Mouse entered.”); } }

A.能通过编译,若组件用该类作为Mouse的监听者并且接收了mouse-exited事件,则在执行过程中会抛出异常

B.以上代码可通过编译

C.不能通过编译,因为类头定义不能分行

D.不能通过编译,因为没有实现MouseListener接口中的所有方法

 

14.一个线程的run方法包含以下语句,假定线程没有被打断,以下哪项是正确的( ) 1.try{ 2. sleep(100); 3. }catch(InterruptedException e){ }

A.在第2行,线程将暂停运行,正好在100毫秒后继续运行。

B.在第2行,线程将暂停运行,最多在100毫秒内将继续运行。

C.在第2行,线程将暂停运行,将在100毫秒后的某一时刻继续运行。

D.不能通过编译,因为在run方法中可能不会捕捉到异常。

 

15.以下标识符中哪项是不合法的( )

A.$int

B.BigMeaninglessName

C.1 st

D.$1

 

16.以下声明合法的是( )

A.public final static native int w( )

B.default String s;

C.abstract final double hyperbolicCosine( )

D.abstract double d;

 

17.以下哪个接口的定义是正确的?( )

A.interface A { void print();}

B.interface A { void print() { } ;}

C.abstract interface A { void print() ;}

D.abstract interface A extends I1, I2 //I1、I2为已定义的接口 { abstract void print(){ };}

 

18.执行完以下代码int [ ]x = new int[25];后,以下哪项说明是正确的( )

A.x[25]为0

B.x[24]未定义

C.x[24]为0

D.x[0]为空

 

19.类Test1定义如下: public class Test1{ public float aMethod(float a,float b){ } } 将以下哪种方法插入行3是不合法的。( )

A.public int aMethod(int a, int b){ }

B.public float aMethod(float c,float d){ }

C.public float aMethod(float a, float b,float c){ }

D.private float aMethod(int a,int b,int c){ }

 

20.5、编译运行以下程序后,关于输出结果的说明正确的是 ( ) public class Conditional{ public static void main(String args[ ]){ int x=4; System.out.println(“value is “+ ((x>4) ? 99.9 :9)); }}

A.输出结果为:value is 99.99

B.输出结果为:value is 9.0

C.输出结果为:value is 9

D.编译错误

 

赞(0)
未经允许不得转载:奥鹏作业网 » 川农《JAVA语言基础(本科)》19年12月在线作业【满分答案】

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址