当前位置:首页
> Luz 第6033页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论单选题:Given:
Given:```Javavoid write() throws IOException { DataOutputStream out = new DataOutputStream( new FileOutputStream( new…
单选题:About String in Java, which statement below is NOT correct?
About String in Java, which statement below is NOT correct? @[D](2)A. A String object is immutable.B. A String object…
单选题:About access control in Java, which statement below is correct?
About access control in Java, which statement below is correct? @[D](2)A. A member without any access modifier is defa…
单选题:Given code below:
Given code below:```Javaclass A { private int m; public int k; static int g; int h; static void f() {}}```Which variable…
单选题:Which one below is NOT a valid area designation for the BorderLa
Which one below is NOT a valid area designation for the BorderLayout? @[C](2)A. NORTHB. CENTERC. MIDDLED. EASTA.NORTHB.…
单选题:Which of the interfaces below is a collection as duplicating, or
Which of the interfaces below is a collection as duplicating, ordered, unsorted? @[A](2)A. ListB. MapC. SetD. Collect…
单选题:Which one below is true about the StringBuffer class?
Which one below is true about the StringBuffer class? @[D](2)A. An object of StringBuffer has a fixed size.B. StringBu…
单选题:The result of `Math.abs(10.4)` is:
The result of `Math.abs(10.4)` is: @[A](2)A. 10.4B. 10C. 10.0D. -10.4A.10.4B.10C.10.0D.-10.4答案:A…
单选题:About the Java language, which one below is NOT correct?
About the Java language, which one below is NOT correct? @[C](2)A. A redefinition of a superclass method in a subclass…
单选题:About “import java.util.Scanner”, which statement is NOT correct
About “import java.util.Scanner”, which statement is NOT correct? @[D](2)A. Scanner class belongs to java.util package…