单选题Which statement is true about XpauseTarget in Oracle JRockit JVM ? ()AThis option is supported by all type of Garbage collection modes.BThis option is only supported by Generational Garbage Collection mode.CThis option is only supported by Mark and Swe

题目
单选题
Which statement is true about XpauseTarget in Oracle JRockit JVM ? ()
A

 This option is supported by all type of Garbage collection modes.

B

 This option is only supported by Generational Garbage Collection mode.

C

 This option is only supported by Mark and Sweep Garbage Collection mode.

D

 This option is only supported by Dynamic Garbage Collection mode.


相似考题
更多“单选题Which statement is true about XpauseTarget in Oracle JRockit JVM ? ()A  This option is supported by all type of Garbage collection modes.B  This option is only supported by Generational Garbage Collection mode.C  This option is only supported by Mark a”相关问题
  • 第1题:

    Which statement is true about XpauseTarget in Oracle JRockit JVM ? ()

    • A、 This option is supported by all type of Garbage collection modes.
    • B、 This option is only supported by Generational Garbage Collection mode.
    • C、 This option is only supported by Mark and Sweep Garbage Collection mode.
    • D、 This option is only supported by Dynamic Garbage Collection mode.

    正确答案:D

  • 第2题:

    When running the jfs2 filesystem on a user volume group which of the following options is TRUE?()

    • A、Only the 64bit kernel is supported. 
    • B、Filesystem compression is not supported. 
    • C、Filesystem compression is supported only if the 64bit kernel is running. 
    • D、Filesystem compression is supported running either a 32bit or 64bit kernel.

    正确答案:B

  • 第3题:

    11. class Snoochy {  12. Boochybooch;  13. public Snoochy() { booch = new Boochy(this); }  14. }  15.  16. class Boochy {  17. Snoochy snooch;  18. public Boochy(Snoochy s) { snooch = s; }  19. }  And the statements:  21. public static void main(String[] args) {  22. Snoochy snoog = new Snoochy();  23. snoog = null;  24. // more code here  25. }  Which statement is true about the objects referenced by snoog, snooch, and booch immediately after line 23 executes?() 

    • A、 None of these objects are eligible for garbage collection.
    • B、 Only the object referenced by booch is eligible for garbage collection.
    • C、 Only the object referenced by snoog is eligible for garbage collection.
    • D、 Only the object referenced by snooch is eligible for garbage collection.
    • E、 The objects referenced by snooch and booch are eligible for garbage collection.

    正确答案:E

  • 第4题:

    Which statement is true about a NAT rule action of off?()

    • A、The NAT action of off is only supported for destination NAT rule-sets.
    • B、The NAT action of off is only supported for source NAT rule-sets.
    • C、The NAT action of off is useful for detailed control of NAT.
    • D、The NAT action of off is useful for disabling NAT when a pool is exhausted

    正确答案:C

  • 第5题:

    Which two statements are true about the duplexing of the backups taken by RMAN?()  

    • A、 It’s only supported for the backups performed on the tape
    • B、 It is not supported for backup operations that produce image copies
    • C、 Duplex backups need a parallelism for the device to be equal to number of copies
    • D、 Duplex backups can be performed to either disk or tape, but cannot be performed on tape and disk simultaneously

    正确答案:B,D

  • 第6题:

    You have created an Oracle 10g database named SALES, which will be used by an application named SalesOrders. Users of the SalesOrders application complain that application response time is slow when they generate reports. The SalesOrders application accesses a table that contains 10 million rows. You decide to create an index on this table using the NOLOGGING option so that the index creation process is completed in the least amount of time. Which of the following is NOT true about an index created with the NOLOGGING option?()

    • A、 The index can be changed from NOLOGGING to LOGGING
    • B、 The index cannot be recovered even in the ARCHIVELOG mode.
    • C、 The index can only be created if the base table is created with the NOLOGGING option.
    • D、 The index can be recovered if you perform a backup after the CREATE INDEX statement.

    正确答案:C

  • 第7题:

    单选题
    When considering migrating a POWER6 server with PCI-X and PCIe adapters to a Power 720, which statement is true?()
    A

    PCIe adapters are supported only in I/O drawers

    B

    PCI-X adapters are supported in both the CEC and in I/O drawers

    C

    PCI-X adapters are supported in the CEC; PCIe adapters are supported in 12X I/O drawers

    D

    PCIe adapters are supported in the CEC; PCI-X adapters are supported in 12X I/O drawers


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

  • 第8题:

    单选题
    Which statement is true about a NAT rule action of off?()
    A

    The NAT action of off is only supported for destination NAT rule-sets.

    B

    The NAT action of off is only supported for source NAT rule-sets.

    C

    The NAT action of off is useful for detailed control of NAT.

    D

    The NAT action of off is useful for disabling NAT when a pool is exhausted


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

  • 第9题:

    单选题
    Which statements about the garbage collection are true?()
    A

     The program developer must create a thread to be responsible for free the memory.

    B

     The garbage collection will check for and free memory no longer needed.

    C

     The garbage collection allow the program developer to explicity and immediately free the memory.

    D

     The garbage collection can free the memory used java object at expect time.


    正确答案: C
    解析: Java语言将内存分配和释放的工组交给了自己,程序员不必做这些工作,它提供一个系统级的线程跟踪每个内存的分配,在JVM的空闲处理中,垃圾收集线程将检查和释放不再使用的内存(即可以被释放的内存)。垃圾收集的过程在java程序的生存期中是自动的,不需要分配和释放内存,也避免了内存泄漏。可以调用System.gc()方法建议(suggest)JVM执行垃圾收集以使得可被释放的内存能立即被使用,当此方法返回的时候,JVM已经做了最大的努力从被丢弃的对象上回收内存空间。程序员不能指定收集哪些内存,一般而言也不用关心这个问题,除非是程序的内存消耗很大,特别是有很多临时对象时可以“建议“进行垃圾收集以提高可用内存。需要指出的是调用System.gc()方法不能保证JVM立即进行垃圾收集,而只能是建议,因为垃圾收集线程的优先级很低(通常是最低的)。

  • 第10题:

    多选题
    Oracle JRockit JVM uses -Xns option to set nursery size when the generational garbage collection mode is used.  Which two JVM properties are affected by changing its size ?()
    A

    compaction ratio limit

    B

    garbage collection frequency

    C

    garbage collection times

    D

    fragmentation heap size


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

  • 第11题:

    单选题
    You have created an Oracle 10g database named SALES, which will be used by an application named SalesOrders. Users of the SalesOrders application complain that application response time is slow when they generate reports. The SalesOrders application accesses a table that contains 10 million rows. You decide to create an index on this table using the NOLOGGING option so that the index creation process is completed in the least amount of time. Which of the following is NOT true about an index created with the NOLOGGING option?()
    A

     The index can be changed from NOLOGGING to LOGGING

    B

     The index cannot be recovered even in the ARCHIVELOG mode.

    C

     The index can only be created if the base table is created with the NOLOGGING option.

    D

     The index can be recovered if you perform a backup after the CREATE INDEX statement.


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

  • 第12题:

    单选题
    What is true about IP Source Guard with port security?()
    A

    Binding should be manually configured.

    B

    It is not supported if IEEE 802.1x port-based authentication is enabled.

    C

    The DHCP server must support option 82, or the client is not assigned an IP address.

    D

    It filters based on source IP address only.


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

  • 第13题:

    When using IP SLA FTP operation, which two FTP modes are supported? ()

    • A、Only the FTP PUT operation type is supported.
    • B、Active mode is supported.
    • C、Passive FTP transfer modes are supported.
    • D、FTP URL specified for the FTP GET operation is not supported.

    正确答案:B,C

  • 第14题:

    Which statements about the garbage collection are true?() 

    • A、 The program developer must create a thread to be responsible for free the memory.
    • B、 The garbage collection will check for and free memory no longer needed.
    • C、 The garbage collection allow the program developer to explicity and immediately free the memory.
    • D、 The garbage collection can free the memory used java object at expect time.

    正确答案:B

  • 第15题:

    Which statement is true about a NAT rule action of off?()

    • A、The NAT action of off is only supported for destination NAT rule-sets.
    • B、The NAT action of off is only supported for source NAT rule-sets.
    • C、The NAT action of off is useful for detailed control of NAT
    • D、The NAT action of off is useful for disabling NAT when a pool is exhausted.

    正确答案:C

  • 第16题:

    Which two statements are true about pool-based source NAT? ()(Choose two.)

    • A、PAT is not supported.
    • B、PAT is enabled by default.
    • C、It supports the address-persistent configuration option.
    • D、It supports the junos-global configuration option.

    正确答案:B,C

  • 第17题:

    Oracle JRockit JVM uses -Xns option to set nursery size when the generational garbage collection mode is used.  Which two JVM properties are affected by changing its size ?()

    • A、 compaction ratio limit
    • B、 garbage collection frequency
    • C、 garbage collection times
    • D、 fragmentation heap size

    正确答案:B,C

  • 第18题:

    单选题
    11.class Snoochy{ 12.Boochybooch; 13.public Snoochy(){booch=newBoochy(this);} 14.} 15. 16.class Boochy{ 17.Snoochy snooch; 18.public Boochy(Snoochys){snooch=s;} 19.} And the statements: 21.public static void main(String[]args){ 22.Snoochy snoog=new Snoochy(); 23.snoog=null; 24.//more code here 25.} Which statement is true about the objects referenced by snoog,snooch,and booch immediately after line 23 executes?()
    A

    None of these objects are eligible for garbage collection.

    B

    Only the object referenced by booch is eligible for garbage collection.

    C

    Only the object referenced by snoog is eligible for garbage collection.

    D

    Only the object referenced by snooch is eligible for garbage collection.

    E

    The objects referenced by snooch and booch are eligible for garbage collection.


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

  • 第19题:

    单选题
    Which statement about implementing the Cisco IPv6 provider Edge Router over MPLS is true?()
    A

    6PE feature is supported over tunnels other than RSVP-TE tunnels

    B

    Core MPLS routers are supporting IPv6 ONLY

    C

    6PE feature is not supported over tunnels other than RSVP-TE tunnels

    D

    Core MPLS routers are supporting IPv4 only


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

  • 第20题:

    单选题
    11. class Snoochy {  12. Boochybooch;  13. public Snoochy() { booch = new Boochy(this); }  14. }  15.  16. class Boochy {  17. Snoochy snooch;  18. public Boochy(Snoochy s) { snooch = s; }  19. }  And the statements:  21. public static void main(String[] args) {  22. Snoochy snoog = new Snoochy();  23. snoog = null;  24. // more code here  25. }  Which statement is true about the objects referenced by snoog, snooch, and booch immediately after line 23 executes?()
    A

     None of these objects are eligible for garbage collection.

    B

     Only the object referenced by booch is eligible for garbage collection.

    C

     Only the object referenced by snoog is eligible for garbage collection.

    D

     Only the object referenced by snooch is eligible for garbage collection.

    E

     The objects referenced by snooch and booch are eligible for garbage collection.


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

  • 第21题:

    单选题
    pany has implemented 802.1X authentication as a security enhancement.  Which statement is  true about 802.1x port-based authentication?()
    A

     TACACS+ is the only supported authentication server type.

    B

     If a host initiates the authentication process and does not receive a response, it assumes it is  not authorized.

    C

     RADIUS is the only supported authentication server type.

    D

     Before transmitting data, an 802.1x host must determine the authorization state of the switch.

    E

     Hosts are required to havea 802.1x authentication client or utilize PPPoE.

    F

     None of the other alternatives apply.


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

  • 第22题:

    单选题
    Which statement is true about a NAT rule action of off?()
    A

    The NAT action of off is only supported for destination NAT rule-sets.

    B

    The NAT action of off is only supported for source NAT rule-sets.

    C

    The NAT action of off is useful for detailed control of NAT

    D

    The NAT action of off is useful for disabling NAT when a pool is exhausted.


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

  • 第23题:

    单选题
    Which statement is true about XpauseTarget in Oracle JRockit JVM ? ()
    A

     This option is supported by all type of Garbage collection modes.

    B

     This option is only supported by Generational Garbage Collection mode.

    C

     This option is only supported by Mark and Sweep Garbage Collection mode.

    D

     This option is only supported by Dynamic Garbage Collection mode.


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

  • 第24题:

    多选题
    Which two statements are true about pool-based source NAT? ()(Choose two.)
    A

    PAT is not supported.

    B

    PAT is enabled by default.

    C

    It supports the address-persistent configuration option.

    D

    It supports the junos-global configuration option.


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