interface foo { 

题目

interface foo {   int k = 0;   }    public class test implements Foo (   public static void main(String args) (    int i;   Test test = new test ();   i= test.k;   i= Test.k;   i= Foo.k;   )   )   What is the result? ()

  • A、 Compilation succeeds.
  • B、 An error at line 2 causes compilation to fail.
  • C、 An error at line 9 causes compilation to fail.
  • D、 An error at line 10 causes compilation to fail.
  • E、 An error at line 11 causes compilation to fail.
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

3. string foo = “ABCDE”;  4. foo.substring(3);  5. foo.concat(“XYZ”);  6.     Type the value of foo at line 6.()


正确答案:ABCDE

第2题:

Which the three are valid declarations of a float?()

  • A、 float foo = -1;
  • B、 float foo = 1.0;
  • C、 float foo = 42el:
  • D、 float foo = 2.02f:
  • E、 float foo = 3.03d:

正确答案:A,D,F

第3题:

Javascript中,foo对象有att属性,那么以下获取att属性值的表达式哪个是错误的?()

A、foo.att

B、foo[“att“]

C、foo{“att“}

D、foo[“a“+“t“+“t“]


参考答案:C

第4题:

foo对象有att属性,那么获取att属性的值,以下哪些做法是可以的?()

  • A、foo.att
  • B、foo(“att”)
  • C、foo[“att”]
  • D、foo{“att”}
  • E、foo[“a”+“t”+“t”]

正确答案:A,C,E

第5题:

class Foo {  private int x;  publicFoo(intx) {this.x=x; }  public void setX( int x) { this.x = x; }  public int getX() { return x; }  }   public class Gamma {  static Foo fooBar( Foo foo) {  foo = new Foo( 100);  return foo;  }  public static void main( String[] args) {  Foo foo = new Foo( 300);  System.out.print( foo.getX() + “-“);  Foo fooFoo = fooBar( foo);  System.out.print( foo.getX() + “-“);  System.out.print( fooFoo.getX() + “-“);  foo = fooBar( fooFoo);  System.out.print( foo.getX() + “-“);  System.out.prmt( fooFoo.getX());  }  }  What is the output of this program?()

  • A、 300-100-100-100-100
  • B、 300-300-100-100-100
  • C、 300-300-300-100-100
  • D、 300-300-300-300-100

正确答案:B

第6题:

public interface Foo {  int k = 4; 3. }  Which three are equivalent to line 2?()

  • A、 final int k = 4;
  • B、 public int k = 4;
  • C、 static int k = 4;
  • D、 abstract int k = 4;
  • E、 volatile int k = 4;
  • F、 protected int k = 4;

正确答案:A,B,C

第7题:

Given an EL function foo, in namespace func, that requires a long as a parameter and returns a Map,which two are valid invocations of function foo?()

  • A、${func(1)}
  • B、${foo:func(4)}
  • C、${func:foo(2)}
  • D、${foo(5):func}
  • E、${func:foo("easy")}
  • F、${func:foo("3").name}

正确答案:C,F

第8题:

Assume a tag handler extends TagSupport. Which is used within the tag handler to get an attribute “foo” that is in the application scope?()

  • A、 pageContext.getAttribute(“foo”);
  • B、 getPageContext().getAttribute(“foo”);
  • C、 pageContext.getApplicationScope(“foo”);
  • D、 pageContext.getAttribute(“foo”,pageContext.APPLICATION_SCOPE).getAttribute(“foo”);
  • E、 getPageContext().getScope(pageContext.APPLICATION_SCOPE).getAttribute(“foo”);

正确答案:D

第9题:

Which three are valid declarations of a float? () 

  • A、 Float foo = -1;
  • B、 Float foo = 1.0;
  • C、 Float foo = 42e1;
  • D、 Float foo = 2.02f;
  • E、 Float foo = 3.03d;
  • F、 Float foo = 0x0123;

正确答案:A,D,F

第10题:

下面选项中哪一个是和$("#foo")等价的写法()。

  • A、$(“foo#”)
  • B、$(“foo”)
  • C、$(“.foo”)
  • D、jquery(“#foo”)

正确答案:D

更多相关问题