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

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:With the code below, the output is:

Luz5年前 (2021-05-10)793
With the code below, the output is: @[A](2)```JavaSystem.out.println(2˃5?1.0:1);```A. 1.0 B. 1 C. compile error D.…

单选题:Given code below:

Luz5年前 (2021-05-10)868
Given code below: ```Java public class Main { int a = 10; int c = 30; public Runnable getRunnable() { int a = 20; r…

单选题:Exceptions that are not derived from RuntimeException and Errors

Luz5年前 (2021-05-10)1359
Exceptions that are not derived from RuntimeException and Errors ______. @[A](2)A. Must be either caught or specified.B…

单选题:About JIT JVM, which statement below is correct?

Luz5年前 (2021-05-10)1234
About JIT JVM, which statement below is correct? @[C](2)A. The compiler generates native code for JIT JVM.B. There is…

单选题:About Java, which statement below is NOT correct?

Luz5年前 (2021-05-10)1786
About Java, which statement below is NOT correct? @[C](2)A. Big-endian is used to store all multi-byte data types.B. Th…

单选题:For code below, the result s would be?

Luz5年前 (2021-05-10)824
For code below, the result s would be? @[A](2)```JavaString s = String.format("2.1 can be rounded as %i\n", Math.roun…

单选题:Which one below is a valid Java identifier?

Luz5年前 (2021-05-10)1331
Which one below is a valid Java identifier? @[D](2)A. volatile B. goto C. 4ever D. $2元A.volatileB.gotoC.4everD.$2元…

单选题:For code below, which statement is NOT correct?

Luz5年前 (2021-05-10)1041
For code below, which statement is NOT correct? @[A](2)```Javaimport static haha.Haha.*; …public class Lala {public v…

单选题:For `String s;`, which statement below is correct?

Luz5年前 (2021-05-10)1253
For `String s;`, which statement below is correct? @[A](2)A. s is a variable not initialized, and is to be a pointer t…

单选题:About Java containers, which statement below is NOT correct?

Luz5年前 (2021-05-10)1693
About Java containers, which statement below is NOT correct? @[D](2)A. `ArrayList` holds the elements in a particular…