当前位置:首页
> Luz 第6034页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论单选题:With the code below, the output is:
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:
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
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?
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?
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?
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?
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?
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?
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?
About Java containers, which statement below is NOT correct? @[D](2)A. `ArrayList` holds the elements in a particular…