更多“Which interface does java.util.Hashtable implement?()  ”相关问题
  • 第1题:

    Which interface does java.util.Hashable implement?()  

    • A、 Java.util.Map.
    • B、 Java.util.List.
    • C、 Java.util.Hashable.
    • D、 Java.util.Collection.

    正确答案:A

  • 第2题:

    Which interface must a class implement to be informed of a session creation event?()

    • A、 javax.servlet.http.HttpSessionListener
    • B、 javax.servlet.http.HttpSessionBindingListener
    • C、 javax.servlet.http.HttpSessionCreationListener
    • D、 javax.servlet.http.HttpSessionActivationListener

    正确答案:A

  • 第3题:

    With which two does a scheduler map associate? ()

    • A、Scheduler
    • B、BA Classifier
    • C、Queues
    • D、Interface

    正确答案:C,D

  • 第4题:

    Which of the following interfaces is required to implement Workload Partition Mobility? ()

    • A、 Workload Partitions Manager for AIX
    • B、 Hardware Management Console (HMC) GUI
    • C、 Integrated Virtualization Manager (IVM)
    • D、 Advanced System Management Interface (ASMI)

    正确答案:A

  • 第5题:

    Which statements about inheritance are true?()         

    • A、 In Java programming language only allows single inheritance.
    • B、 In Java programming language allows a class to implement only one interface.
    • C、 In Java programming language a class cannot extend a class and implement a interface together.
    • D、 In Java programming language single inheritance makes code more reliable.

    正确答案:A,D

  • 第6题:

    Which three are true about servlet filters?()

    • A、A filter must implement the destroy method.
    • B、A filter must implement the doFilter method.
    • C、A servlet may have multiple filters associated with it.
    • D、A servlet that is to have a filter applied to it must implement the javax.servlet.FilterChain interface.
    • E、A filter that is part of a filter chain passes control to the next filter in the chain by invoking the FilterChain.forward method.

    正确答案:A,B,C

  • 第7题:

    单选题
    Which interface does the Infranet Controller use to push the configuration? ()
    A

    trusted port

    B

    internal port

    C

    trust interface

    D

    untrust interface


    正确答案: A
    解析: 暂无解析

  • 第8题:

    单选题
    Which interface does java.util.Hashable implement?()
    A

     Java.util.Map.

    B

     Java.util.List.

    C

     Java.util.Hashable.

    D

     Java.util.Collection.


    正确答案: A
    解析: 暂无解析

  • 第9题:

    多选题
    Which three statements concerning the use of the java.io.Serializable interface are true?()
    A

    Objects from classes that use aggregation cannot be serialized

    B

    An object serialized on one JVM can be successfully deserialized on a different JVM

    C

    The values in fields with the volatile modifier will NOT survive serialization and deserialization

    D

    The values in fields with the transient modifier will NOT survive serialization and deserialization

    E

    It is legal to serialize an object of a type that has a supertype that does NOT implement java.io.Serializable


    正确答案: C,E
    解析: 暂无解析

  • 第10题:

    多选题
    Given a class whose instances, when found in a collection of objects, are sorted by using the compareTo() method, which two statements are true?()
    A

    The class implements java.lang.Comparable.

    B

    The class implements java.util.Comparator.

    C

    The interface used to implement sorting allows this class to define only one sort sequence.

    D

    The interface used to implement sorting allows this class to define many different sort sequences.


    正确答案: C,A
    解析: 暂无解析

  • 第11题:

    多选题
    You are using IPv6, and would like to configure EIGRPv3. Which three of these correctly describe how you can perform this configuration?()
    A

    EIGRP for IPv6 is directly configured on the interfaces over which it runs.

    B

    EIGRP for IPv6 is not configured on the interfaces over which it runs, but if a user uses passive-interface configuration, EIGRP for IPv6 needs to be configured on the interface that is made passive.

    C

    There is a network statement configuration in EIGRP for IPv6, the same as for IPv4.

    D

    There is no network statement configuration in EIGRP for IPv6.

    E

    When a user uses a passive-interface configuration, EIGRP for IPv6 does not need to be configured on the interface that is made passive.

    F

    When a user uses a non-passive-interface configuration, EIGRP for IPv6 does not need to be configured on the interface that is made passive


    正确答案: A,E
    解析: 暂无解析

  • 第12题:

    单选题
    You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. You create a custom-templated server control.  You need to ensure that the child controls of the server control are uniquely identified within the control hierarchy of the page.  Which interface should you implement?()
    A

    the ITemplatable interface 

    B

    the INamingContainer interface 

    C

    the IRequiresSessionState interface

    D

    the IPostBackDataHandler interface


    正确答案: C
    解析: 暂无解析

  • 第13题:

    You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. You create a custom-templated server control.  You need to ensure that the child controls of the server control are uniquely identified within the control hierarchy of the page.  Which interface should you implement?()

    • A、the ITemplatable interface 
    • B、the INamingContainer interface 
    • C、the IRequiresSessionState interface
    • D、the IPostBackDataHandler interface

    正确答案:B

  • 第14题:

    Which three statements concerning the use of the java.io.Serializable interface are true?()

    • A、Objects from classes that use aggregation cannot be serialized
    • B、An object serialized on one JVM can be successfully deserialized on a different JVM
    • C、The values in fields with the volatile modifier will NOT survive serialization and deserialization
    • D、The values in fields with the transient modifier will NOT survive serialization and deserialization
    • E、It is legal to serialize an object of a type that has a supertype that does NOT implement java.io.Serializable

    正确答案:B,D,E

  • 第15题:

    Which three methods of source NAT does JUNOS Software support?()

    • A、interface-based source NAT
    • B、source NAT with address shifting
    • C、source NAT using static source pool
    • D、interface-based source NAT without PAT
    • E、source NAT with address shifting and PAT

    正确答案:A,B,C

  • 第16题:

    Which interface does java.util.Hashtable implement?()  

    • A、 java.util.Map
    • B、 java.util.List
    • C、 java.util.Hashable
    • D、 java.util.Collection

    正确答案:A

  • 第17题:

    Given a class whose instances, when found in a collection of objects, are sorted by using the compareTo() method, which two statements are true?()

    • A、The class implements java.lang.Comparable.
    • B、The class implements java.util.Comparator.
    • C、The interface used to implement sorting allows this class to define only one sort sequence.
    • D、The interface used to implement sorting allows this class to define many different sort sequences.

    正确答案:A,C

  • 第18题:

    Which type of traffic will cause Policed Discards errors on an interface on a JUNOS device?()

    • A、Traffic that does not match any route in the forwarding table.
    • B、Traffic that exceeds the bandwidth of the interface.
    • C、Traffic of unsupported protocols on that interface.
    • D、Traffic arriving on unknown virtual-circuits on that interface.

    正确答案:C

  • 第19题:

    多选题
    Which three concerning the use of the java.io.Serializable interface are true?()
    A

    Objects from classes that use aggregation cannot be serialized.

    B

    Art object serialized on one JVM can be successfully deserialized on a different JVM.

    C

    The values in fields with the volatile modifier will NOT survive serialization anddeserialization.

    D

    The values in fields with the transient modifier will NOT survive serialization anddeserialization.

    E

    It is legal to serialize an object of a type that has a supertype that does NOT implement java.io.Serializable.


    正确答案: A,D
    解析: 暂无解析

  • 第20题:

    单选题
    Which class provides paging functionality for data-bound controls that implement the IPageableItemContainer interface?()
    A

    DataPagingField

    B

    DataPagerCollection

    C

    DataPager

    D

    DataPaging


    正确答案: B
    解析: 暂无解析

  • 第21题:

    多选题
    Which statements about inheritance are true?()
    A

    In Java programming language only allows single inheritance.

    B

    In Java programming language allows a class to implement only one interface.

    C

    In Java programming language a class cannot extend a class and implement a interface together.

    D

    In Java programming language single inheritance makes code more reliable.


    正确答案: D,C
    解析: 在java中一个类只能有一个直接父类,但是可以实现多个接口,在继承的同时可以实现接口,之所以取消多继承的原因是多继承使得代码产生很多问题,而使用单一继承则可以使代码更可靠。

  • 第22题:

    单选题
    Which of the following interfaces is required to implement Workload Partition Mobility? ()
    A

     Workload Partitions Manager for AIX

    B

     Hardware Management Console (HMC) GUI

    C

     Integrated Virtualization Manager (IVM)

    D

     Advanced System Management Interface (ASMI)


    正确答案: C
    解析: 暂无解析

  • 第23题:

    单选题
    Which interface must a class implement so that instances of the class are notified after any object is addedto a session?()
    A

    javax.servlet.http.HttpSessionListener

    B

    javax.servlet.http.HttpSessionValueListener

    C

    javax.servlet.http.HttpSessionBindingListener

    D

    javax.servlet.http.HttpSessionAttributeListener


    正确答案: A
    解析: 暂无解析