Java试题(4)

发布时间:2013-12-16 06:32:17

Java Text ()

1. Which of the following lines will compile without warning or error.

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

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]);

}

}

1) myprog

2) good

3) morning

4) Exception raised:

"java.lang.IndexOutOfBoundsException: 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);

}

}

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]);

}

}

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]);

}

}

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?

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");

}

1) one

2) one, default

3) one, two, default

4) default

10. Which of the following lines of code will compile without error

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;

}

}

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) 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?

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?

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;

}

}

}

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

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);

}

}

}

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();

}

}

}

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

}

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 {}

40.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.

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

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?

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?

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);

}

}

}

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

28Which statements about the garbage collection are true?

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

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");

}

}

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.

2.

3.

4.

5.

6.

7.

8.

9.

10.

11.

12.

13.

14.

15.

16.

17.

18.

19.

20.

21.

22.

23.

24.

25.

26.

27.

28.

29.

答案:

Java试题(4)

相关推荐