易搜题 > 资格证大类 > 计算机编程 > 问题详情
问题详情

public class Test {  public static void main(String [] args) {  boolean assert = true;  if(assert) {  System.out.println(”assert is true”);  }  }  } Given:  javac -source 1.3 Test.java  What is the result?() 

A、 Compilation fails.

B、 Compilation succeeds with errors.

C、 Compilation succeeds with warnings.

D、 Compilation succeeds without warnings or errors.

未找到的试题在搜索页框底部可快速提交,在会员中心"提交的题"查看可解决状态。 收藏该题
查看答案

相关问题推荐

  • //point X    public class foo (   public static void main (Stringargs) throws Exception {   printWriter out = new PrintWriter (new )  java.io.outputStreamWriter (System.out), true;   out.printIn(“Hello”);    }   )   Which statement at PointX on line 1 allows this code to compile and run?()

    A、 Import java.io.PrintWriter;

    B、 Include java.io.PrintWriter;

    C、 Import java.io.OutputStreamWriter;

    D、 Include java.io.OutputStreamWriter;

    E、 No statement is needed.

  • What is the result?()

    A、 Compilation succeeds.

    B、 Compilation fails due to multiple errors.

    C、 Compilation fails due to an error only on line 20.

    D、 Compilation fails due to an error only on line 21.

    E、 Compilation fails due to an error only on line 22.

    F、 Compilation fails due to an error only on line 12.

  • Which two code fragments are most likely to cause a StackOverflowError?()

    A

    A

    B

    B

    C

    C

    D

    D

    E

    E

    F

    F

  • 11. class Payload {  12. private int weight;  13. public Payload(int wt) { weight = wt; }  13. public void setWeight(mt w) { weight = w; }  15. public String toString { return Integer.toString(weight); }  16. }  17.  18. public class TestPayload {  19. static void changePayload(Payload p) { 20. /* insert code here */ 21. }  22.  23. public static void main(String[] args) {  24. Payload p = new Payload();  25. p.setWeight(1024);  26. changePayload(p);  27. System.out.println(”The value of p is “+ p);  28. }  29. }  Which statement, placed at line 20, causes the code to print “The value of p is 420.”?() 

    A、 p.setWeight(420);

    B、 p.changePayload(420);

    C、 p = new Payload(420);

    D、 Payload.setWeight(420);

    E、 p = Payload.setWeight(420);

    F、 p = new Payload(); p.setWeight(420);

  • What are four valid examples of polymorphic method calls?()

    A

    x.a2();

    B

    z.a2();

    C

    z.c1();

    D

    z.a1();

    E

    y.c1();

    F

    x.a1();

联系客服 会员中心
TOP