网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
下列代码中,将出现编译错误的行是 1 public class Exercise{ 2 public static void main(String args[]){ 3 float f = 0.0 ; 4 f = f + 1.0 ; 5 } 6 }
A.第2行
B.第3行
C.第4行
D.第6行
参考答案和解析
B
更多 “下列代码中,将出现编译错误的行是 1 public class Exercise{ 2 public static void main(String args[]){ 3 float f = 0.0 ; 4 f = f + 1.0 ; 5 } 6 }A.第2行B.第3行C.第4行D.第6行” 相关考题
考题
下列代码中,将引起编译错误的行是1)public class Exercise{2)public static void main(String args[]){3)float f=0.0:4)f+=1.0;5) }6) }A.第2行B.第3行C.第4行D.第6行
考题
下列代码中,将引起编译错误的行是( )。 ① public class test{ ② public static void main(String args[]){ ③ float f=0.0; ④ f+=0; ⑤ } ⑥ }A.第2行B.第3行C.第4行D.第6行
考题
下列代码的执行结果是( )。 public class Test { public static void main ( String args[]) { float f=5.0f; int i=4; System.out.println((f++) *(--i)); } }A.20B.20.0C.15D.15.0
考题
已知如下类说明: public class Test { private float f = 1.0f; int m = 12; static int n=1; public static void main(String arg[]) { Test t = new Test(); // 程序代码… } } 如下哪个使用是正确的?()
A.t.fB.this.nC.Test.mD.Test.n
考题
下列程序的执行结果是 public class Testgg { public static void main(String args[]) { float t=9.0f; int q=5; System.out.println((t++)*(- -q)); } }A.40B.36C.36D.40
考题
已知有下列类的说明,则下列哪个语句是正确的?public class Test { private float f=1.0f; int m=12; static int n=1; public static void main(String arg[]) { Test t= new Test(); }}A.t.f;B.this. nC.Test.m;D.Test.f;
考题
下面代码的执行结果是( )。 public class test { public static void main (String args[]) { float m=5.0f; int n=4; System.out.println((++m)*(n--)); } }A.20.0B.20C.24.0D.24
考题
已知有下面的类说明: public class Test4 { private float f=1.0f; int m=12; static int n=1; public static void main(String args[]) { Test4 e=new Test4(); } } 在main()方法中,下面哪个的使用是正确的? ( )A.e.fB.this.nC.Test4.mD.Test4.f
考题
下列代码中,将引起编译错误的行是( )。 ① public class test{ ② public static void main(String args[]){ ③ float f=0.0; ④ f+=1.0; ⑤ } ⑥ }A.第2行B.第3行C.第4行D.第6行
考题
下列代码中,将引起编译错误的行是( )。 1)public class Exercise{ 2)public static void main(String args[]){ 3)floatf=0.0; 4)f+=1.0; 5)} 6)}A.第2行B.第3行C.第4行D.第6行
考题
下列代码执行结果为 ( )public class Test{ public static void main(String args[]){ float p=0f; int q=3; System.out.println(++p)*(q--)); }}A.16B.24C.16D.24
考题
下列代码的执行结果是( )。 public class Test1 { public static void main(String args[]) float t = 0f; int q = 5; System.out.println((t++)*(--q)); }A.40B.40C.36D.36
考题
下列代码中,将引起编译错误的行是______。 (1) public class Test { (2) int m,n; (3) public Test( ){} (4) public Test(int A){m=a;} (5) public static void main(String args[ ]){ (6) Test t1,t2; (7) int j,k; (8) j=0;k=0; (9) t1=new Test( ); (10) t2=new Test(j,k); (11) 1 (12) }A.第3行B.第5行C.第6行D.第10行
考题
下列代码中,将引起编译错误的行是( )。 1) public class Exercise{ 2) public static void main(String args[]) { 3) float f=0.0; 4) f+=0; 5) } 6) }A.第2行B.第3行C.第4行D.第6行
考题
下列代码的执行结果是( )。 public class Test{ public static void main(String args[ ]){ float t=9.0f; int q=5; System.out.println((t++) * (- -q)); } }A.41B.41.0C.36D.36.0
考题
已知有下列类的说明,则下列哪个语句是正确的? ( ) public class Test { private float f=1.0f; int m=2; static int n=1; public static void main(String arg[]) { Test t=new Test(); } }A.t.f;B.this,n;C.Test.m;D.Test.f;
考题
下列代码的执行结果是( )。 public class Test1 { public static void main(String args []) { float t=0f; int q=5; System. out. println((t++)*(--q)); } }A.40B.40C.36D.36
考题
下列程序运行的结果为:public class test {public static void main(String args[]) {int i;float f = 2.3f;double d = 2.7;i = ((int)Math.ceil(f)) * ((int)Math.round(d));System.out.println(i);}}
A. 4B. 5C. 6D. 6.1E. 9
考题
public class ArrayTest { public static void main(String[] args) { float fl[], f2[]; fl = new float[10]; f2 = f1; System.out.println(“f2[0]= “ + f2[0]); } } What is the result?() A、 It prints f2[0] = 0.0.B、 It prints f2[0] = NaN.C、 An error at line 5 causes compile to fail.D、 An error at line 6 causes compile to fail.E、 An error at line 6 causes an expectation at runtime.
考题
public static void parse(String str) { try { float f= Float.parseFloat(str); } catch (NumberFormatException nfe) { f= 0; } finally { System.out.println(f); } } public static void main(String[] args) { parse(”invalid”); } What is the result?() A、 0.0B、 Compilation fails.C、 A ParseException is thrown by the parse method at runtime.D、 A NumberFormatException is thrown by the parse method at runtime.
考题
Which declarations will allow a class to be started as a standalone program?() A、public void main(String args[])B、public void static main(String args[])C、public static main(String[] argv)D、final public static void main(String [] array)E、public static void main(String args[])
考题
public class Test { private static float[] f = new float[2]; public static void main(String args[]) { System.out.println(“f[0] = “ + f[0]); } } What is the result?() A、 f[0] = 0B、 f[0] = 0.0C、 Compilation fails.D、 An exception is thrown at runtime.
考题
现有: 1 Interface F{} 2 class A implements F{} 3 class B extends A{} 4 class C extends B{ 5 public static void main(String[] args){ 6 B b=new B(); 7 //inSert C0de here 8 } 9 } 下列哪行代码插入到第7行,将抛出java.lang.ClassCaseException异常()A、 A a=b;B、 F f= (C)b;C、 F f= (A)b;D、 B bb= (B)(A)b;
考题
1. public class ArrayTest { 2. public static void main (String[]args) { 3. float f1[], f2[]; 4. f1 = new float [10]; 5. f2 = f1; 6. System.out.printIn (“f2[0]=” + f2[0]); 7. } 8. } What is the result?() A、 It prints f2[0] = 0.0B、 It prints f2[0] = NaNC、 An error at line 5 causes compile to fail.D、 An error at line 6 causes compile to fail.E、 An error at line 6 causes an exception at runtime.
考题
单选题public class ArrayTest { public static void main(String[] args) { float fl[], f2[]; fl = new float[10]; f2 = f1; System.out.println(“f2[0]= “ + f2[0]); } } What is the result?()A
It prints f2[0] = 0.0.B
It prints f2[0] = NaN.C
An error at line 5 causes compile to fail.D
An error at line 6 causes compile to fail.E
An error at line 6 causes an expectation at runtime.
考题
单选题1. public class ArrayTest { 2. public static void main (String[]args) { 3. float f1[], f2[]; 4. f1 = new float [10]; 5. f2 = f1; 6. System.out.printIn (“f2[0]=” + f2[0]); 7. } 8. } What is the result?()A
It prints f2[0] = 0.0B
It prints f2[0] = NaNC
An error at line 5 causes compile to fail.D
An error at line 6 causes compile to fail.E
An error at line 6 causes an exception at runtime.
考题
单选题public static void parse(String str) { try { float f= Float.parseFloat(str); } catch (NumberFormatException nfe) { f= 0; } finally { System.out.println(f); } } public static void main(String[] args) { parse(”invalid”); } What is the result?()A
0.0B
Compilation fails.C
A ParseException is thrown by the parse method at runtime.D
A NumberFormatException is thrown by the parse method at runtime.
考题
单选题public class Test { private static float[] f = new float[2]; public static void main(String args[]) { System.out.println(“f[0] = “ + f[0]); } } What is the result?()A
f[0] = 0B
f[0] = 0.0C
Compilation fails.D
An exception is thrown at runtime.
热门标签
最新试卷