JAVA认证格林模拟试题一(下)
来源:优易学  2009-11-28 14:55:06   【优易学:中国教育考试门户网】   资料下载   IT书店
文章页内部300*250广告位

 

question 41)

given the following code what will be output?

public class pass{
static int j=20;
public static void main(string argv[]){
int i=10;
pass p = new pass();
p.amethod(i);
system.out.println(i);
system.out.println(j);
}

public void amethod(int x){
x=x*2;
j=j*2;
}
}

1) error: amethod parameter does not match variable
2) 20 and 40
3) 10 and 40
4) 10, and 20

question 42)
what code placed after the comment //for loop would result in the population of every element of the array ia[] with a value from variable i.?

public class lin{
public static void main(string argv[]){
lin l = new lin();
l.amethod();
}
public void amethod(){
int ia[] = new int[4];
//start for loop
{
ia[i]=i;
system.out.println(ia[i]);
}
}
}

1) for(int i=0; i < ia.length() -1; i++)
2) for (int i=0; i< ia.length(); i++)
3) for(int i=1; i < 4; i++)
4) for(int i=0; i< ia.length;i++) 2]

question 43)
what will be the result when you try to compile and run the following code?

private class base{
base(){
int i = 100;
system.out.println(i);
}
}

public class pri extends base{
static int i = 200;
public static void main(string argv[]){
pri p = new pri();
system.out.println(i);
}
}

1) error at compile time
2) 200
3) 100 followed by 200
4) 100

question 44)

what will the following code print out?

public class oct{
public static void main(string argv[]){
oct o = new oct();
o.amethod();
}
public void amethod(){
int oi= 012;
system.out.println(oi);
}
}

1)12
2)012
3)10
4)10.0 

question 45

what will happen when you try compiling and running this code?

public class ref{
public static void main(string argv[]){
ref r = new ref();
r.amethod(r);
}
public void amethod(ref r){
int i=99;
multi(r);
system.out.println(i);
}
public void multi(ref r){
r.i = r.i*2;
}
}

1) error at compile time
2) an output of 99
3) an output of 198
4) an error at runtime

question 46)

you need to create a class that will store unique object elements. you do not need to sort these elements but they must be unique.

what interface might be most suitable to meet this need?

1)set
2)list
3)map
4)vector 

question 47)

which of the following will successfully create an instance of the vector class and add an element?

1) vector v=new vector(99);
     v[1]=99;
 

2) vector v=new vector();
     v.addelement(99);
 

3) vector v=new vector();
    v.add(99);
 

4 vector v=new vector(100);
   v.addelement("99");

question 48)

you have created a simple frame and overridden the paint method as follows

public void paint(graphics g){
g.drawstring("dolly",50,10);

}
what will be the result when you attempt to compile and run the program?

1) the string "dolly" will be displayed at the centre of the frame
2) an error at compilation complaining at the signature of the paint method
3) the lower part of the word dolly will be seen at the top of the frame, with the top hidden.
4) the string "dolly" will be shown at the bottom of the frame.

question 49)

what will be the result when you attempt to compile this program?

public class rand{
public static void main(string argv[]){
int irand;
irand = math.random();
system.out.println(irand);
}
}

1) compile time error referring to a cast problem
2) a random number between 1 and 10
3) a random number between 0 and 1
4) a compile time error about random being an unrecognised method

question 50)

given the following code

import java.io.*;
public class th{
public static void main(string argv[]){
th t = new th();
t.amethod();
}
public void amethod(){
try{
iocall();
}catch(ioexception ioe){}
}
}

what code would be most likely for the body of the iocall method

1) public void iocall ()throws ioexception{
datainputstream din = new datainputstream(system.in);
din.readchar();
}
2) public void iocall ()throw ioexception{
datainputstream din = new datainputstream(system.in);
din.readchar();
}
3) public void iocall (){
datainputstream din = new datainputstream(system.in);
din.readchar();
}
4) public void iocall throws ioexception(){
datainputstream din = new datainputstream(system.in);
din.readchar();

}
 

上一页  [1] [2] [3] 下一页

责任编辑:小草

收藏此页】【 】【打印】【回到顶部
计算机文章页底部500*200广告
文章搜索:
 相关文章
计算机底部580*90广告
文章页右侧第一330*280广告
计算机文章页资讯推荐
热点资讯
文章页330尺寸谷歌广告位
热门课程培训