单选题System.out.format(”Pi is approximately %d.”, Math.PI); What is the result?()A Compilation fails.B Pi is approximately 3.C Pi is approximately 3.141593.D An exception is thrown at runtime.
单选题
System.out.format(”Pi is approximately %d.”, Math.PI); What is the result?()
A
Compilation fails.
B
Pi is approximately 3.
C
Pi is approximately 3.141593.
D
An exception is thrown at runtime.
参考解析
解析:
暂无解析
相关考题:
单选题public class Test { public static void main( String[] args) { String foo = args[1]; String bar = args[2]; String baz = args[3]; System.out.println(“baz = “ + baz); } } And the command line invocation: java Test red green blue What is the result?()A baz =B baz = nullC baz = blueD Compilation fails.E An exception is thrown at runtime.
单选题public class Test { public static void main(String Args[]) { int i =1, j = 0; switch(i) { case 2: j +=6; case 4: j +=1; default: j +=2; case 0: j +=4; } System.out.println(“j =” +j); } } What is the result? ()A 0B 2C 4D 6E 9F 13
单选题1. class Super { 2. public float getNum() { return 3.0f; } 3. } 4. 5. public class Sub extends Super { 6. 7. } Which method, placed at line6, causes compilation to fail?()A public void getNum(){}B public void getNum(double d){}C public float getNum() { return 4.0f; }D public double getNum(float d) { return 4.0d; }
多选题public class OuterClass { private double d1 1.0; //insert code here } You need to insert an inner class declaration at line2. Which two inner class declarations are valid?()Astatic class InnerOne { public double methoda() {return d1;} }Bstatic class InnerOne { static double methoda() {return d1;} }Cprivate class InnerOne { public double methoda() {return d1;} }Dprotected class InnerOne { static double methoda() {return d1;} }Epublic abstract class InnerOne { public abstract double methoda(); }
单选题Which code determines the int value foo closest to a double value bar?()A Int foo = (int) Math.max(bar);B Int foo = (int) Math.min(bar);C Int foo = (int) Math.abs(bar);D Int foo = (int) Math.ceil(bar);E Int foo = (int) Math.floor(bar);F Int foo = (int) Math.round(bar);
单选题package foo; import java.util.Vector; private class MyVector extends Vector { int i = 1; public MyVector() { i = 2; } } public class MyNewVector extends MyVector { public MyNewVector () { i = 4; } public static void main (String args ) { MyVector v = new MyNewVector(); } } The file MyNewVector.java is shown in the exhibit. What is the result?()A Compilation will succeed.B Compilation will fail at line 5.C Compilation will fail at line 6.D Compilation will fail at line 14.E Compilation will fail at line 17.
单选题1. class super { 2. public float getNum() {return 3.0f;} 3. } 4. 5. public class Sub extends Super { 6. 7. } Which method, placed at line 6, will cause a compiler error?()A Public float getNum() {return 4.0f; }B Public void getNum () { }C Public void getNum (double d) { }D Public double getNum (float d) {retrun 4.0f; }
多选题Which two can directly cause a thread to stop executing?()AExiting from a synchronized block.BCalling the wait method on an object.CCalling the notify method on an object.DCalling the notifyAll method on an object.ECalling the setPriority method on a thread object.