单选题In addition to a POWER5 system and an HMC, what else is required to enable Micro-Partitions in an AIX environment?()A AIX 5.3 and Dynamic Logical PartitioningB AIX 5.2 and Dynamic Logical PartitioningC AIX 5.2 and Advanced POWER Virtualization featureD

题目
单选题
In addition to a POWER5 system and an HMC, what else is required to enable Micro-Partitions in an AIX environment?()
A

AIX 5.3 and Dynamic Logical Partitioning

B

AIX 5.2 and Dynamic Logical Partitioning

C

AIX 5.2 and Advanced POWER Virtualization feature

D

AIX 5.3 and Advanced POWER Virtualization feature


相似考题
更多“In addition to a POWER5 system and an HMC, what else is requ”相关问题
  • 第1题:

    A Power Systems customer would like to upgrade their HMC to the latest version of software tosupport a new hardware feature. What resource will help identify dependencies for firmware and system software for their upgrade?()

    • A、ITSO Redbooks
    • B、Facts and Features
    • C、System Planning Tool
    • D、Fix Level Recommendation Tool

    正确答案:D

  • 第2题:

    A system administrator had a disk failure on an HMC. The disk was replaced and the HMC was loaded from the Product Recovery CD. The system administrator had performed a backup to DVD of the HMC data before the system failed. After restoring the backup files, it was noticed that no profile files were restored. What is the most likely cause of this problem?()

    • A、The profile data was not initialized after restoring the backup CD
    • B、The profile data was not backed up before doing the Critical Console Data backup
    • C、A Critical Console Data backup was performed which backs up user data, but not profile data
    • D、A Save Upgrade data was done instead of a backup Critical Console Data and the profile files were not included

    正确答案:B

  • 第3题:

    A customer plans to consolidate several systems onto POWER7. Their immediate requirement is to have a single Power 770, and they will buy a second Power 770 at a later stage. They want to keep their existing three POWER5 570s and three POWER6 520s which are all managed by an HMC (7310-CR3). Which of these statements is true and would minimize the cost?()

    • A、All the machines can be connected to the existing HMC, as long as it is updated to code level 7.7.1 or later
    • B、The Power 770 requires an HMC (7042-CR5 or later), so they must buy one. All of the systems can be managed by this new HMC
    • C、They should buy a new HMC for the Power 770 system, and leave the POWER5 and POWER6 based  systems connected to the existing one
    • D、The Power 770 requires an HMC, so they should connect the Power 770 to the HMC and convert the POWER5 and POWER6 based servers to IVM

    正确答案:A

  • 第4题:

    A client has an existing p5 570 that is directly connected to a HMC. The customer will be purchasing another p5 570. Which of the following solutions would be appropriate to provide HMC connectivity to the second p5 570?()

    • A、Implement a proxy server to provide multiple sources to one destination 
    • B、Purchase an additional Ethernet adapter for each p5 570 to provide connectivity between the two 
    • C、Purchase a network hub or switch so both p5 570s can connect to the single HMC 
    • D、Purchase an additional HMC since multiple HMC are required when more than one POWER5 Enterprise class server is used Purchase an additional HMC since multiple HMC? are required when more than one POWER5 Enterprise class server is used

    正确答案:C

  • 第5题:

    A customer currently has five partitioned POWER4 systems and is adding new systems.  When the pSeries technical specialist introduces the first p5 system with CoD into this environment, how should the HMC be handled?()

    • A、Order a new HMC to support the p5 system.
    • B、Attach the new p5 system to the existing HMC.
    • C、Upgrade the existing HMC to accommodate both the POWER4 and p5 systems.
    • D、Do nothing.  This system does not require an HMC.

    正确答案:A

  • 第6题:

    try {  if ((new Object))(.equals((new Object()))) {  System.out.println(“equal”);  }else{  System.out.println(“not equal”);  }  }catch (Exception e) {  System.out.println(“exception”);  }   What is the result? () 

    • A、 equal
    • B、 not equal
    • C、 exception
    • D、 Compilation fails.

    正确答案:D

  • 第7题:

    Which of the following lists of items all require an HMC to function with POWER5?()

    • A、Running AIX 5.3 Implementing HACMP Implementing Static LPAR
    • B、Implementing Advanced POWER Virtualization Running Linux Attaching RIO drawers
    • C、Implementing VIO Server Implementing Dynamic LPAR Running with SMT turned "On"
    • D、Running AIX and Linux on the same system Implementing CoD Implementing Micro-Partitioning

    正确答案:D

  • 第8题:

    单选题
    public void foo( boolean a, boolean b ){  if( a ) {  System.out.println( “A” );  } else if ( a && b ) {  System.out.println( “A&&B” );  } else { 17. if ( !b ) {  System.out.println( “notB” );  } else {  System.out.println( “ELSE” );  }  } }  What is correct?()
    A

     If a is true and b is true then the output is “A&&B”.

    B

     If a is true and b is false then the output is “notB”.

    C

     If a is false and b is true then the output is “ELSE”.

    D

     If a is false and b is false then the output is “ELSE”.


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

  • 第9题:

    单选题
    boolean bool = true; if(bool = false) { System.out.println(“a”); } else if (bool) { System.out.println(“c”); } else if (!bool) { System.out.println(“c”); } else { System.out.println(“d”); } What is the result?()
    A

     a

    B

     b

    C

     c

    D

     d

    E

     Compilation fails.


    正确答案: E
    解析: First of all, the second println statement should print the character ‘b’ instead of ‘c’. Also, the answer is not E. but C. Indeed, the following line is perfectly legal: if ‘(bool = false)’. The bool variable will simply take the value of false and the IF statement will be evaluated to false. Therefore, the correct answer is C. 

  • 第10题:

    单选题
    A new p5 customer has just installed a partitioned p5-550 alongside some older POWER4 servers.  The pSeries technical specialist has received a call to say that the existing HMC (7315) cannot connect to the new server.  How can the specialist help the customer?()
    A

    Explain to the customer that they need an additional HMC for the POWER5 system.

    B

    Obtain a PO from the customer to purchase additional serial connections to the HMC.

    C

    Obtain a PO from the customer to purchase additional Ethernet connections to the HMC.

    D

    Explain to the customer that they need a firmware update on the HMC to support both POWER4 and POWER5.


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

  • 第11题:

    单选题
    A system was rebooted and is taking a long time to return. The administrator has logged into the HMC and sees reference code 0c9. What does this mean()?
    A

    The system is configuring a device.

    B

    A system initiated dump has started.

    C

    The system is varyingon a volume group.

    D

    The system is running an inbuilt self test.


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

  • 第12题:

    单选题
    try {  if ((new Object))(.equals((new Object()))) {  System.out.println(“equal”);  }else{  System.out.println(“not equal”);  }  }catch (Exception e) {  System.out.println(“exception”);  }   What is the result? ()
    A

     equal

    B

     not equal

    C

     exception

    D

     Compilation fails.


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

  • 第13题:

    A customer wants to upgrade an existing pSeries system.  In addition to retrieving the IBM configuration records, what else should be done to ensure an accurate upgrade quote is provided?()

    • A、Request that the pSeries technical specialist provide the discount percentage to the customer.
    • B、Run both eConfig and PCRS6000 to ensure that both configurators provide the same upgrade quote.
    • C、Confirm with the customer that the installed inventory accurately reflects what is actually installed.
    • D、Provide options to the customer so they can choose the most appropriate upgrade for their environment.

    正确答案:C

  • 第14题:

    Companycom is currently using a p690 and has just ordered a p5 590. They prefer to run in full system partition mode, since their application will utilize all the resources in the machine, and they don't want the overhead of an LPAR. What is the best response to the customer about the POWER5 capabilities?()

    • A、POWER5 runs in an SMP mode as default
    • B、POWER5 can run in a full system mode the same as the p690
    • C、POWER5 can run in full system mode with the purchase of PLM
    • D、POWER5 can run in a full system mode, but it is in LPAR mode

    正确答案:D

  • 第15题:

    Companycom currently has three p650 servers in their environment and they are implementing a p5 595. The p650 servers are running in an SMP environment, but are connected to a pair of HMCs. In order to follow best practices in the enterprise server environment and maintain HMC connectivity to the p650s, what else will needs to be ordered in addition to the p5 595?()

    • A、Include a new HMC in the order to connect to the p5 595
    • B、Include a pair of new HMCs in the order to connect to the p5 595
    • C、Include a media set for POWER5 HMC in the order to upgrade one of the existing HMC’s to POWER5 capabilities
    • D、Include a media set for POWER5 HMC in the order to upgrade both of the existing HMC to  POWER5 capabilities Include a media set for POWER5 HMC in the order to upgrade both of the existing HMC? To POWER5 capabilities

    正确答案:B

  • 第16题:

    A system was rebooted and is taking a long time toreturn. The administrator has logged into the HMC and sees reference code 0c9. What does this mean?()

    • A、The system is configuring a device.
    • B、A system initiated dump has started.
    • C、The system is varyingon a volume group.
    • D、The system is running an inbuilt self test.

    正确答案:B

  • 第17题:

    A customer’s data center has all POWER4+ systems, and they plan to add three new p5-570 systems.  They will be purchasing a new 7310-CR2 HMC to support the POWER5 systems.  What is a key requirement that they need to plan for with the new HMC?()

    • A、A desk, as it not rack mountable
    • B、Ethernet connections to the POWER5 systems
    • C、Serial connections to the POWER5 systems
    • D、USB connections for the keyboard and mouse

    正确答案:B

  • 第18题:

    public static void main(String[]args){ String str="null"; if(str==null){ System.out.println("null"); }else(str.length()==0){ System.out.println("zero"); }else{ System.out.println("some"); } } What is the result?()

    • A、null
    • B、zero
    • C、some
    • D、Compilationfails.
    • E、Anexceptionisthrownatruntime.

    正确答案:D

  • 第19题:

    单选题
    A customer’s data center has all POWER4+ systems, and they plan to add three new p5-570 systems.  They will be purchasing a new 7310-CR2 HMC to support the POWER5 systems.  What is a key requirement that they need to plan for with the new HMC?()
    A

    A desk, as it not rack mountable

    B

    Ethernet connections to the POWER5 systems

    C

    Serial connections to the POWER5 systems

    D

    USB connections for the keyboard and mouse


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

  • 第20题:

    单选题
    A just announced two-port Ethernet card has been installed on a system and it is not recognized. On the HMC the slot shows empty. The device driver has been installed and cfgmgr runs normally. What is the most appropriate action to solve this problem?()
    A

    Update the HMC software

    B

    Update the system firmware

    C

    Re-install the device driver

    D

    Flash update the two-port card


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

  • 第21题:

    单选题
    In addition to a POWER5 system and an HMC, what else is required to enable Micro-Partitions in an AIX environment?()
    A

    AIX 5.3 and Dynamic Logical Partitioning

    B

    AIX 5.2 and Dynamic Logical Partitioning

    C

    AIX 5.2 and Advanced POWER Virtualization feature

    D

    AIX 5.3 and Advanced POWER Virtualization feature


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

  • 第22题:

    单选题
    A customer plans to purchase a p5-570 that will run in SMP mode to host a large financial database on AIX 5.2.  The application is sized for an 8-way 1.65-GHz machine.  They do not currently have an existing HMC that supports p5 machines. This organization experiences unpredictable short-term spikes in processor utilization.  To mitigate the risk to their business, they are interested in IBM’s CoD offering.  In addition to the 8-way system, what else should the pSeries technical specialist recommend to the customer?()
    A

    Another p5-570 building block

    B

    Capacity Backup p5-570 building block

    C

    Another p5-570 building block and at least one HMC

    D

    Capacity Backup p5-570 building block and at least one HMC


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

  • 第23题:

    单选题
    public static void main(String[] args) {  String str = “null‟;  if (str == null) {  System.out.println(”null”);  } else (str.length() == 0) {  System.out.println(”zero”);  } else {  System.out.println(”some”);  }  }  What is the result?()
    A

     null

    B

     zero

    C

     some

    D

     Compilation fails.

    E

     An exception is thrown at runtime.


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

  • 第24题:

    单选题
    public static void main(String[]args){ String str="null"; if(str==null){ System.out.println("null"); }else(str.length()==0){ System.out.println("zero"); }else{ System.out.println("some"); } } What is the result?()
    A

    null

    B

    zero

    C

    some

    D

    Compilationfails.

    E

    Anexceptionisthrownatruntime.


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