-->
当前位置:首页 > Luz 第6031页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:Which method below is to define an executive body of a thread? (

Luz5年前 (2021-05-10)1154
Which method below is to define an executive body of a thread? ( ) @[C](2)A. start();B. init()C. run()D. synchronized(…

单选题:For the code below, which one can replace the line 7?( )

Luz5年前 (2021-05-10)1489
For the code below, which one can replace the line 7?( ) @[C](2)```Javapublic class Base { int w,x,y,z; public Base(int…

单选题:Which one below is correct to define and create an array? ( )

Luz5年前 (2021-05-10)1188
Which one below is correct to define and create an array? ( ) @[C](2)A. int a[5];B. int a[] = new [5];C. int a[] = {1…

单选题:Which one is to define an abstract method? ( )

Luz5年前 (2021-05-10)1301
Which one is to define an abstract method? ( ) @[C](2)A. public abstract void Method() {}B. public void abstract Meth…

单选题:Which line below will not generate warning or error when compili

Luz5年前 (2021-05-10)1864
Which line below will not generate warning or error when compiling? ( ) @[D](2)A. float f = 1.3;B. char c = "a";C. by…

单选题:If a method defined in a derived class has the same name, return

Luz5年前 (2021-05-10)1518
If a method defined in a derived class has the same name, return type and parameters with the base one, we call this sit…

单选题:Which line is the right sequence to declare in one compile unit?

Luz5年前 (2021-05-10)1394
Which line is the right sequence to declare in one compile unit? ( ) @[A](2)A. package,import,classB. class,import,pa…

单选题:Given the following expression: `int m[] = {0, 1, 2, 3, 4, 5, 6

Luz5年前 (2021-05-10)933
Given the following expression: `int m[] = {0, 1, 2, 3, 4, 5, 6 };`Which result of the following expressions equals to t…

单选题:For the code below, which statement is right? ( )

Luz5年前 (2021-05-10)983
For the code below, which statement is right? ( ) @[C](2)```Javapublic class MyClass { static int myArg = 1; public sta…

单选题:What will happen if you try to compile and execute B’s `main()`

Luz5年前 (2021-05-10)1101
What will happen if you try to compile and execute B’s `main()` method? ( ) @[D](2)```Javaclass A { int i; A(int i) {…