Java面试汇总(四)

[url="http://www.topDesignerStyling.com"][color=red][size=xx-large][u]最全的Java面试题目下载[/u][/size][/color][/url]


1.Which of the following lines will compile without warning or error.
答案(5)
1) float f=1.3;
2) char c="a";
3) byte b=257;
4) boolean b=null;
5) int i=10;

2. What will happen if you try to compile and run the following code
public class MyClass {
public static void main(String arguments[]) {
amethod(arguments);
}
public void amethod(String[] arguments) {
System.out.println(arguments);
System.out.println(arguments[1]);
}
}
答案(1)
1) error Can't make static reference to void amethod.
2) error method main not correct
3) error array must include parameter
4) amethod must be declared with String

3. Which of the following will compile without error
答案(23)
1) import java.awt.*;
package Mypackage;
class Myclass {}
2) package MyPackage;
import java.awt.*;
class MyClass{}
3) /*This is a comment */
package MyPackage;
import java.awt.*;
class MyClass{}

4. What will be printed out if this code is run with the following command line?
java myprog good morning
public class myprog{
public static void main(String argv[])
{
System.out.println(argv[2]);
}
}
答案(4)
1) myprog
2) good
3) morning
4) Exception raised:
"java.lang.ArrayIndexOutOfBoundsException: 2"

5. What will happen when you compile and run the following code?
public class MyClass{
static int i;
public static void main(String argv[]){
System.out.println(i);
}
}
答案(4)
1) Error Variable i may not have been initialized
2) null
3) 1
4) 0

6. What will happen if you try to compile and run the following code?
public class Q {
public static void main(String argv[]){
int anar[]=new int[]{1,2,3};
System.out.println(anar[1]);
}
}
答案(3)
1) 1
2) Error anar is referenced before it is initialized
3) 2
4) Error: size of array must be defined

7. What will happen if you try to compile and run the following code?
public class Q {
public static void main(String argv[]){
int anar[]=new int[5];
System.out.println(anar[0]);
}
}
答案(3)
1) Error: anar is referenced before it is initialized
2) null
3) 0
4) 5

8. What will be the result of attempting to compile and run the following code?
答案(3)
abstract class MineBase {
abstract void amethod();
static int i;
}
public class Mine extends MineBase {
public static void main(String argv[]){
int[] ar=new int[5];
for(i=0;i < ar.length;i++)
System.out.println(ar[i]);
}
}
1) a sequence of 5 0's will be printed
2) Error: ar is used before it is initialized
3) Error Mine must be declared abstract
4) IndexOutOfBoundes Error

9. What will be printed out if you attempt to compile and run the following code ?
int i=1;
switch (i) {
case 0:
System.out.println("zero");
break;
case 1:
System.out.println("one");
case 2:
System.out.println("two");
default:
System.out.println("default");
}
答案(3)
1) one
2) one, default
3) one, two, default
4) default

10. Which of the following lines of code will compile without error
答案(23)
1) int i=0;
if(i) {
System.out.println("Hello");
}
2) boolean b=true;
boolean b2=true;
if(b==b2) {
System.out.println("So true");
}
3) int i=1;
int j=2;
if(i==1|| j==2)
System.out.println("OK");
4) int i=1;
int j=2;
if(i==1 &| j==2)
System.out.println("OK");

11. What will be output if you try to compile and run the following code, but there is no file called Hello.txt in the current directory?.
import java.io.*;
public class Mine
{
public static void main(String argv[])
{
Mine m=new Mine();
System.out.println(m.amethod());
}
public int amethod()
{
try
{
FileInputStream dis
=new FileInputStream("Hello.txt");
}
catch (FileNotFoundException fne)
{
System.out.println("No such file found");
return -1;
}
catch(IOException ioe)
{}
finally
{
System.out.println("Doing finally");
}
return 0;
}
}
答案(3)
1) No such file found
2 No such file found ,-1
3) No such file found, Doing finally, -1
4) 0
12.Which of the following statements are true?
答案(1)
1) Methods cannot be overriden to be more private
2) static methods cannot be overloaded
3) private methods cannot be overloaded
4) An overloaded method cannot throw exceptions not checked in the base class

13.What will happen if you attempt to compile and run the following code?
答案(3)
class Base {}
class Sub extends Base {}
class Sub2 extends Base {}
public class CEx{
public static void main(String argv[]){
Base b=new Base();
Sub s=(Sub) b;
}
}
1) Compile and run without error
2) Compile time Exception
3) Runtime Exception
14.Which of the following statements are true?
答案(123)
1) System.out.println( -1 >>> 2);will output a result larger than 10
2) System.out.println( -1 >>> 2); will output a positive number
3) System.out.println( 2 >> 1); will output the number 1
4) System.out.println( 1 <<< 2); will output the number 4

15.What will happen when you attempt to compile and run the following code?
public class Tux extends Thread{
static String sName = "vandeleur";
public static void main(String argv[]){
Tux t = new Tux();
t.piggy(sName);
System.out.println(sName);

}
public void piggy(String sName){
sName = sName + " wiggy";
start();
}
public void run(){
for(int i=0;i < 4; i++){
sName = sName + " " + i;

}
}
}
答案(4)
1) Compile time error
2) Compilation and output of "vandeleur wiggy"
3) Compilation and output of "vandeleur wiggy 0 1 2 3"
4) Compilation and output of either "vandeleur", "vandeleur 0", "vandeleur 0 1" "vandaleur 0 1 2" or "vandaleur 0 1 2 3"

16.What will be displayed when you attempt to compile and run the following code
//Code start
import java.awt.*;
public class Butt extends Frame{
public static void main(String argv[]){
Butt MyBut=new Butt();
}
Butt(){
Button HelloBut=new Button("Hello");
Button ByeBut=new Button("Bye");
add(HelloBut);
add(ByeBut);
setSize(300,300);
setVisible(true);
}
}
//Code end
答案(3)
1) Two buttons side by side occupying all of the frame, Hello on the left and Bye on the right
2) One button occupying the entire frame saying Hello
3) One button occupying the entire frame saying Bye
4) Two buttons at the top of the frame one saying Hello the other saying Bye

17.What will be output by the following code?
public class MyFor{
public static void main(String argv[]){
int i;
int j;
outer:
for (i=1;i <3;i++)
inner:
for(j=1; j<3; j++) {
if (j==2)
continue outer;
System.out.println("Value for i=" + i + " Value for j=" +j);
}
}

}
答案(12)
1) Value for i=1 Value for j=1
2) Value for i=2 Value for j=1
3) Value for i=2 Value for j=2
4) Value for i=3 Value for j=1

18.Which statement is true of the following code?
public class Agg{
public static void main(String argv[]){
Agg a = new Agg();
a.go();
}
public void go(){
DSRoss ds1 = new DSRoss("one");
ds1.start();
}
}

class DSRoss extends Thread{
private String sTname="";
DSRoss(String s){
sTname = s;
}
public void run(){
notwait();
System.out.println("finished");
}
public void notwait(){
while(true){
try{
System.out.println("waiting");
wait();
}catch(InterruptedException ie){}
System.out.println(sTname);
notifyAll();
}
}

}
答案(4)
1) It will cause a compile time error
2) Compilation and output of "waiting"
3) Compilation and output of "waiting" followed by "finished"
4) Runtime error, an exception will be thrown

19.Which of the following methods can be legally inserted in place of the comment //Method Here ?
class Base{
public void amethod(int i) { }
}

public class Scope extends Base{
public static void main(String argv[]){
}
//Method Here
}
答案(23)
1) void amethod(int i) throws Exception {}
2) void amethod(long i)throws Exception {}
3) void amethod(long i){}
4) public void amethod(int i) throws Exception {}

20.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?
答案(3)
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.

21.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)
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

22.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)
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();
}

23.What will happen when you compile and run the following code?
public class Scope{
private int i;
public static void main(String argv[]){
Scope s = new Scope();
s.amethod();
}//End of main
public static void amethod(){
System.out.println(i);
}//end of amethod
}//End of class
答案(3)
1) A value of 0 will be printed out
2) Nothing will be printed out
3) A compile time error
4) A compile time error complaining of the scope of the variable i

24.You want to lay out a set of buttons horizontally but with more space between the first button and the rest. You are going to use the GridBagLayout manager to control the way the buttons are set out. How will you modify the way the GridBagLayout acts in order to change the spacing around the first button?
答案(2)
1) Create an instance of the GridBagConstraints class, call the weightx() method and then pass the GridBagConstraints instance with the component to the setConstraints method of the GridBagLayout class.
2) Create an instance of the GridBagConstraints class, set the weightx field and then pass the GridBagConstraints instance with the component to the setConstraints method of the GridBagLayout class.
3) Create an instance of the GridBagLayout class, set the weightx field and then call the setConstraints method of the GridBagLayoutClass with the component as a parameter.
4) Create an instance of the GridBagLayout class, call the setWeightx() method and then pass the GridBagConstraints instance with the component to the setConstraints method of the GridBagLayout class.

25.Which of the following can you perform using the File class?
答案(23)
1) Change the current directory
2) Return the name of the parent directory
3) Delete a file
4) Find if a file contains text or binary information

26.Which statement is true of the following code?
public class Rpcraven{
public static void main(String argv[]){
Pmcraven pm1 = new Pmcraven("One");
pm1.run();
Pmcraven pm2 = new Pmcraven("Two");
pm2.run();

}
}
class Pmcraven extends Thread{
private String sTname="";
Pmcraven(String s){
sTname = s;
}
public void run(){
for(int i =0; i < 2 ; i++){
try{
sleep(1000);
}catch(InterruptedException e){}

yield();
System.out.println(sTname);
}

}
}
答案(2)
1) Compile time error, class Rpcraven does not import java.lang.Thread
2) Output of One One Two Two
3) Output of One Two One Two
4) Compilation but no output at runtime

27.You are concerned that your program may attempt to use more memory than is available. To avoid this situation you want to ensure that the Java Virtual Machine will run its garbage collection just before you start a complex routine. What can you do to be certain that garbage collection will run when you want .
答案(1)
1) You cannot be certain when garbage collection will run
2) Use the Runtime.gc() method to force garbage collection
3) Ensure that all the variables you require to be garbage collected are set to null
4) Use the System.gc() method to force garbage collection

28、Which statements about the garbage collection are true?
答案(2)
1. The program developer must create a thread to be responsible for free the memory.
2. The garbage collection will check for and free memory no longer needed.
3. The garbage collection allow the program developer to explicity and immediately free the memory.
4. The garbage collection can free the memory used java object at expect time.

29.You have these files in the same directory. What will happen when you attempt to compile and run Class1.java if you have not already compiled Base.java
//Base.java
package Base;
class Base{
protected void amethod(){
System.out.println("amethod");
}//End of amethod
}//End of class base
package Class1;
//Class1.java
public class Class1 extends Base{
public static void main(String argv[]){
Base b = new Base();
b.amethod();
}//End of main

}//End of Class1
答案(4)
1) Compile Error: Methods in Base not found
2) Compile Error: Unable to access protected method in base class
3) Compilation followed by the output "amethod"
4)Compile error: Superclass Class1.Base of class Class1.Class1 not found

30.What will happen when you attempt to compile and run the following code
class Base{
private void amethod(int iBase){
System.out.println("Base.amethod");
}
}

class Over extends Base{
public static void main(String argv[]){
Over o = new Over();
int iBase=0;
o.amethod(iBase);
}
public void amethod(int iOver){
System.out.println("Over.amethod");
}
}
答案(4)
1) Compile time error complaining that Base.amethod is private
2) Runtime error complaining that Base.amethod is private
3) Output of "Base.amethod"
4) Output of "Over.amethod"

一个袋子中有100个黑球,100个白球,每次从中取出两个球,然后放回一个球,如果取出两个球颜色相同,则放入一个黑球,如果取出一百一黑,则放入一个白球,请问到最后袋中剩下的球的颜色:
1)黑球 2)白球 3)不一定。 黑球
给出证明。

建立一个数据库模型,用于管理一个公司部门及其内部雇员,每个部门都有一个负责人。根据你的数据库模型,编写sql语句建立你的数据库表,给出一个雇员的姓名,查询该雇员所属的部门负责人。

1. 5)
2. 1)
3. 2)3)
4. 4)
5. 4)
6. 3)
7. 3)
8. 3)
9. 3)
10. 2)3)
11. 3)
12. 1)
13. 3)
14. 1)2)3)
15. 4)
16. 3)
17. 1)2)
18. 4)
19. 2)3)
20. 3)
21. 1)
22. 1)
23. 3)
24. 2)
25. 2,3
26. 2)
27. 1)
28. 2
29. 4
30. 4
黑球。

Java试题(二)(时间40分钟)
一、 选择:
1. 欲构造ArrayList类的一个实例,此类继承了List接口,下列哪个方法是正确的?
A.ArrayList myList=new object(); B.List myList=new ArrayList();
C.ArrayList myList=new List(); D.List myList=new List();
2. 指出正确的表达式。
A.byte b=128; B.Boolean b=null;
C.long=0xfffL D.double=0.9239d
3. 指出下列程序运行的结果。
public class Example{
String str=new String (“good”);
char[]ch={‘a’,’b’,’c’};
public static void main(String args[]) {
Example ex=new example();
ex.change(ex.str,ex.ch);
System.out.print(ex.str=” and ”);
System.out.print(ex.ch);
}
public void change(String str,char ch[]) {
str=”test ok”;
ch[0]=’g’;
}
}
A.good and abc B.good and gbc
C.test ok and abc D.test ok ang gbc
4. 运行下列程序,会产生什么结果?
public class X extends Thread implements Rumble{
public void run() {
System.out.println(“this is run()”);
}
public static void main(String args[])
{
Thread t=new Thread (new X());
t.start();
}
}
A.第一行会产生编译错误 B.第六行会产生编译错误
C.第六行会产运行错误 D.程序会运行和启动
5. 哪个关键字可以对对象加互斥锁?
A.transient B.synchronized
C.serialize D.static
6. 下列代码哪一行会出错?
1) public void modify() {
2) int I,j,k;
3) I=100;
4) while (I>0) {
5) j=I*2;
6) System.out.println(“ The value of j is ”+j);
7) k=k+1;
8) I--;
9) }
10) }
A.line 4 B.line 6
C.line 7 D.line 8
二、 多面选择
1. public class parent {
int change() {}
}
class Child extends Parent{}
哪些方法可以加入类Child中?
A.public int change() {} B.int chang (int i) {}
C.private int change () {} D.abstract int chang () {}
2. String s = “hello”;
String t = “hello”;
char c[] ={‘h’,’e’,’l’,’l’,’o’};
下列哪些表达式返回true?
A.s.equals(t); B.t.equals(c);
C.s==t; D.t.equals(new String (“hello”));
3. 给出下面代码段:
1. switch(m)
2. { case 0: System.out.println(“case 0”);
3. case1: System.out.println(“case 1”); break;
4. case2:
5. default:System.out.println(“default”);
6. }
下面m的哪些值将引起”default”的输出?
A.0 B.1
C.2 D.3
4.对于下列代码:
public class Sample {
long length;
public Sample (long 1) {length = 1;}
public static void main(String arg[]) {
Sample s1,s2,s3;
s1 = new Sample(21L);
s2 = new Sample(21L);
s3 = s2;
long m = 21L;
}
}
下列哪些表达式返回值为‘true’?
A.s1==s2; B. s2==s3;
C.m==s1; D.s1.equals(m)
5.给定下面的代码片段:
public void Test() {
try {
method();
System.out.println(“Hello World”);
}
catch (ArrayIndexOutOfBoundsException e)
{
System.out.println(“Exception1”);
}
finally {
System.out.println(“Thank you!”);
}
}
如果函数method正常运行并返回,会显示下面的哪些信息?
A. Hello World B.Exception
C.Exception1 D.Thank you!
6.关于session的论述正确的有:
A.一个session可以对应数个用户
B.一个session只能对应一个用户
C.可以手动关闭一个session
D.session如果不手动关闭,会一直存在Server中
三、填空题:
1.请描述一下Test.java编译后,在控制台执行命令“java Test”后的输出结果:_________ABA_____________
Test.java内容如下:
class A
{
public A()
{
System.out.print(“A”);
}
}
class B extends A
{
public B()
{
System.out.print(“B”);
A a=new A();
}
}
public class Test
{
public Test()
{
System.out.print(“Test”);
}
public static void main(String[] a)
{
B b=new B();
}
}
2.下列代码不能编译的原因是:______Static Problem_______________
Class A {
Private int x;
Public static void main(String args[])
{
new B();
}
class B{
B() {System.out.println(x);}
}
}
4. 下面程序建立一个服务器通过监听8080端口向客户端输出”Welcome!”字符串,请补充缺少的程序片断:
public class WelcomeServer
{
public static void main(String[] a) throws I0exception
{
____1__ServerSocket so;
System.out.println(“WelcomeServer started!”);
while(true)
{
Socket client = ____2____;
System.out.println(“A client come!”);
try
{
PrintWriter writer = new PrintWriter(
new BufferedWriter(____3____(____4____)));
writer.println(“Welcome!”);
}
catch (I0Exception ioe2)
{
System.out.println(“Something error!”);
}
}
}
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值