public static void main(String args[]) { int i =1; int j = 10;
谋学网www.mouxue.com
do {
if ( i++ j--) continue;
} while ( i 5 );
System.out.println ( i+} }
A、5 5 B、5 4 C、6 4 D、5 6
第21题,如果有以下代码,哪几个数字能产生输出 的结果? Switch(x){
case 1: System.out.println(case 2:
case 3: System.out.println(break;}
System.out.println(} A、0 B、1 C、2 D、3 ,C,D
第22题,已知如下代码: switch (m) {
case 0: System.out.println(case 1: System.out.println(case 2: System.out.println(
case 3: System.out.println(default: System.out.println(}
当m 的 A、0 B、1 C、2 D、3
谋学网www.mouxue.com
E、4
F、以上都不是 ,B,C
第23题,给出下面的代码段: public class Base{ int w, x, y ,z;
public Base(int a,int b) {
x=a; y=b; }
public Base(int a, int b, int c, int d) {
//赋值 x=a, y=b w=d; z=c; } }
在代码说明//赋值 x=a, y=b处写入如下哪几行代码是正确的? A、Base(a,b) B、x=a,y=b; C、x=a;y=b; D、this(a,b); ,D
第24题,针对下面的程序,那些表达式的值是true?Class Aclass{ private long val; public Aclass(long v){val=v;} public static void main(String args[]){ Aclass x=new Aclass(10L); Aclass y=new Aclass(10L); Aclass z=y; long a=10L; int b=10; } } A、a==b; B、a==x; C、y==z; D、x==y; E、a==10.0; ,C,E
第25题,你怎样从下面main()的调用中访问单词java lyrics a kiss is but a kiss A、args[0] B、args[1] C、args[2]
谋学网www.mouxue.com
D、args[3] E、args[4] F、args[5] ,F
第26题,已知如下定义: String s =
下面哪些表达式是合法的? A、s += B、char c = s[1];
C、int len = s.length;
D、String t = s.toLowerCase(); ,D
第27题,已知如下类定义: class Base {
public Base (){ //... }
public Base ( int m ){ //... }
protected void fun( int n ){ //... } }
public class Child extends Base{ // member methods }
如下哪句可以正确地加入子类中?
A、private void fun( int n ){ //...} B、void fun ( int n ){ //... }
C、protected void fun ( int n ) { //... } D、public void fun ( int n ) { //... } ,D
第28题,请选出创建数组的正确语句。 A、float f[][] = new float[6][6]; B、float []f[] = new float[6][6]; C、float f[][] = new float[][6]; D、float [][]f = new float[6][6]; ,B,D
第29题,假定文件名是,下面哪个是正确的类声明。
A、public class Fred{ public int x = 0; public Fred (int x){ this.x=x; } }
谋学网www.mouxue.com
B、public class fred{ public int x = 0; public Fred (int x){ this.x=x; } } C、public class Fred extends MyBaseClass{ public int x = 0; } ,C
第30题,已知如下类说明: public class Test { private float f = 1.0f; int m = 12; static int n=1;
public static void main(String arg[]) { Test t = new Test(); // 程序代码... } }
如下哪个使用是正确的? A、t.f B、this.n C、Test.m D、Test.n ,D
百度搜索“77cn”或“免费范文网”即可找到本站免费阅读全部范文。收藏本站方便下次阅读,免费范文网,提供经典小说成教大学[东北大学]18秋学期《JAVA语言程序设计Ⅰ》在线作业2(2)在线全文阅读。
相关推荐: