1、给出如下代码:
class Test{
private int m;
public static void fun() {
//
}
}
如何使成员变量m 被函数fun()直接访问?
A、将private int m 改为protected int m
B、将private int m 改为 public int m
C、将private int m 改为 static int m
pipedinputstream D、将private int m 改为 int m
答: C
2、下面哪几个函数是public void example(){...}的重载函数?
A、 public void example( int m){...}
B、public int example(){...}
C、public void example2(){...}
D、 public int example ( int m, float f){...}
答: A,D
3、给出下面的代码段:
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)
{
// assignment x=a, y=b
w=d;
z=c;
}
}
在代码说明// assignment x=a, y=b处写入如下哪几个代码是正确的?
A、 Base(a,b);
B、x=a, y=b;
C、x=a; y=b;
D、this(a,b);
答: C,D
4、已知如下定义:String s = "story";
下面哪个表达式是合法的?
A、 s += "books";
B、char c = s[1];
C、int len = s.length;
D、String t = s.toLowerCase();
答: A,D
5、Java中main()函数的值是什么?
A、 String
B、int
C、char
D、void
答:D
6、如下哪些字串是Java中的标识符?
A、 fieldname
B、super
C、3number
D、#number
E、$number
答: A,E
7、如下哪些是Java中有效的关键字?
A、 const
B、NULL
C、false
D、this
E、 native
答:A,C,D,E
8、如下哪些是Java中正确的整数表示?
A、22
B、0x22
C、022
D、22H
答: A,B,C
9、下面的代码段中,执行之后i 和j 的值是什么?
int i = 1;
int j;
j = i++;
A、 1, 1
B、1, 2
C、2, 1
D、2, 2
答: C
10、下面句话是正确的?
A、 >> 是算术右移操作符.
B、>> 是逻辑右移操作符.
C、>>> 是算术右移操作符
D、>>> 是逻辑右移操作符
答:A,D
11、下面哪个赋值语句是合法的?
A、float a = 2.0
B、double b = 2.0
C、int c = 2
D、long d = 2
答:B,C,D
12、下面哪个是main()函数的合法参数?
A、char args[]
B、char args[][]
C、String arg要[]
D、String args
答: C
13、下面哪个语句是创建数组的正确语句?
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];
E、float [][]f = new float[6][];
答:A,B,C,D
14、已知表达式int m[] = {0, 1, 2, 3, 4, 5, 6 };
下面哪个表达式的值与数组下标量总数相等?
A、 m.length()
B、m.length
C、m.length()+1
D、m.length+1
答:B
15、已知如下的命令执行 java MyTest a b c
请问哪个语句是正确的?
A、 args[0] = "MyTest a b c"
B、args[0] = "MyTest"
C、args[0] = "a"
D、args[1]= 'b'
答:C, D
16、已知如下代码:
public class Test
{
long a[] = new long[10];
public static void main ( String arg[] ) {
System.out.println ( a[6] );
}
}
请问哪个语句是正确的?
A、Output is null.
B、Output is 0.
C、When compile, some error will occur.
D、When running, some error will occur.
答:B
17、已知如下代码:
boolean m = true;
if ( m == false )
System.out.println("False");
else
System.out.println("True");
执行结果是什么?
A、False
B、True
C、None
D、An error will occur when running.
答: B
18、已知如下代码:
public class Test
{
public static void main(String arg[])
{
int i = 5;
do {
System.out.println(i);
} while (--i>5)
System.out.println("finished");
}
}
执行后的输出是什么?
A、 5
B、4
C、6
D、Finished
E、None
答:A,D
19、下面代码执行后的输出是什么?
outer: for(int i=0;i<3; i++)
inner: for(int j=0;j<2;j++)
{
if(j==1) continue outer;
System.out.println(j+ "and "+i);
}
A、 0 and 0
B、0 and 1
C、0 and 2
D、1 and 0
答: A,B,C
20、已知如下代码:
switch (m)
{
case 0: System.out.println("Condition 0");
case 1: System.out.println("Condition 1");
case 2: System.out.println("Condition 2");
case 3: System.out.println("Condition 3");break;
default: System.out.println("Other Condition");
}
当m 的值为什么时输出"Condition 2"?
A、 0
B、1
C、2
D、3
答:A,B,C
21、当浏览器返回到新URL的包含applet 的页面时调用以下哪个函数?
A、 init()
B、start()
C、stop()
D、destroy()
答:B
22、以下哪个方法用于定义线程的执行体?
A、 start()
B、init()
C、run()
D、main()
答:C
23、Java中如下哪个约束符是正确的?
A、private
B、public
C、protected
D、protect
答:A,B,C
24如果类中的成员变量可以被同一包访问,则使用如下哪个约束符?
A、private
B、public
C、protected
D、no modifier
答:D
25、以下哪个约束符可用于定义成员常量?
A、 static
B、final
C、abstract
D、No modifier can be used
答:B
26、如下哪个语句正确说明了native方法?
A、 public native void test();
B、public native void test(){}
C、public void native test();
D、public native test(){}
答:A
27、已知如下类说明:
public class Test {
private float f = 1.0;
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
答:A,D
28、已知如下代码:
1: class Example{
2: String str;
3: public Example(){
4: str= "example";
5: }
6: public Example(String s){
7: str=s;
8: }
9:} }
10: class Demo extends Example{
11: }
12: public class Test{
13:public void f () {
14:Example ex = new Example("Good");
15:Demo d = new Demo("Good");
16:} }
哪句语句会导致错误?
A、line 6
B、line 10
C、line 14
D、line 15
答:D
29、已知如下类定义:
class Base {
public Base (){ //... }
public Base ( int m ){ //... }
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论