大数据基础技能试题和答案.doc

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

Java基础

1.Which of the following will compile correctly?

A)float f=10f;

B)float f=10.1;

C)float f=10.1f;

D)byte b=10b;

2.Which declarations of identifiers are legal

A.$persons

B.TwoUsers

C.*point

D.this

E._endline

3.Which statement of assigning a long type variable to a hexadecimal value is correct

A.long number = 345L;

B.long number = 0345;

C.long number = 0345L;

D.long number = 0x345L

4.Which of the following fragments might cause errors

A.String s = H Gone with the wind11;

String t = " good

String k = s +1;

B.String s = H Gone with the wind1';

String t;

t = s[3] + "one";

C.String s = "Gone with the wind'1;

Stri ng stan dard = s.toUpperCase();

D.String s = H home directory";

String t = s ・"directory";

5.Which are syntactically valid statement at// point x

class Pers on {

private int a;

public int change(int m){ return m;}

}

public class Teacher exte nds Pers on {

public int b;

public static void main (String arg[]){

Pers on p = new Pers on();

Teacher t = new Teacher();

int i;

// point x

}

}

A.j = m;

B.i = b;

C.i = p.a;

D.i 二p.change(30);

E.i = t.b.

6.Which layout manager is used when the frame is resized the buttons's position in the Frame might be changed

A・ BorderLayout

B.FlowLayout

C・ CardLayout

D. GridLayout

7.Given the following code fragment:

1) public void create() {

2} Vector myVect;

3} myVect = new Vector();

4}}

Which of the following statements are true

A.The declaration on line 2 does not allocate memory space for the variable myVect.

B.The declaratio n on line 2 allocates memory space for a ref ere nee to a Vector object ・

C.The statement on line 2 creates an object of class Vector.

D.The statement on line 3 creates an object of class Vector.

E.The statement on line 3 allocates memory space for an object of class Vector

8.Which of the following answer is correct to express the value 8 in octal number

A.010

B.0x10

C.08

D.0x8

9.Which are not Java keywords

A.TRUE

B.sizeof

C.const

D・ super

E.void

10.Which of the following statements are true

A.The equals() method determines if ref ere nee values refer to the same object ・

B.The == operator determines if the contents and type of two separate objects match・

C.The equals() method retur ns true only when the con tents of two objects match.

D.The class File overrides equals)) to return true 讦the contents and type of two separate objects match.

11.Which statements about inheritanee are true

A.In Java programming language only allows single inheritance・

B.In Java programming Ianguage allows a class to implement only one

in terface ・

C・ In Java programming language a class cannot extend a class and implement

a in terface together.

D.In Java programmi ng language single inherits nee makes code more reliable.

12.

1)class Pers on {

2} public void printValue(int i, int j) {/*...*/}

3} public void printValue(int i){/*...*/}

4}}

5) public class Teacher exte nds Pers on {

6} public void printValuef) {/*...*/ }

7} public void printValue(int i) {/*...*/}

8} public static void main(String args[]){

9} Pers on t = new Teacher();

10} t.printValue(lO);

H}}

12}}

Which method will the statement on line 10 call

A.on line 2

B.on line 3

C.on line 6

D.on line 7

13. Which are not Java primitive types

A.short

B.Boolean

C.unit

D.float

14> The method resume() is responsible for resuming which thread^ execution

A・ The thread which is stopped by calling method stop()

B.The thread which is stopped by calling method sleep()

C・ The thread which is stopped by calling method wait()\

相关文档
最新文档