网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
单选题
A client has a temporary deployment of a new static application that needs to run for a short period of time and is not going to change. How can this deployment be achieved with a minimum of effort and time?()
A

Run a system WPAR and deploy the application.

B

Create a new LPAR and deploy the application.

C

Create an application WPAR to deploy the application.

D

Create an LPAR hosted by a VIO server and deploy the application.


参考答案

参考解析
解析: 暂无解析
更多 “单选题A client has a temporary deployment of a new static application that needs to run for a short period of time and is not going to change. How can this deployment be achieved with a minimum of effort and time?()A Run a system WPAR and deploy the application.B Create a new LPAR and deploy the application.C Create an application WPAR to deploy the application.D Create an LPAR hosted by a VIO server and deploy the application.” 相关考题
考题 Which two code fragments correctly create and initialize a static array of int elements() A.static final int[]a={100,200};B.static final int[]a;static{a=new int[2];a[0]=100;a[1]=200;}C.static final int[]a=new int[2]{100,200};D.static final int[]a;static void int(){a=new int[3];a[0]=100;a[1]=200;}

考题 A customer has installed UAC in their network. They have both Windows and Linux endpoints andmust choose a deployment method that everyone can use. Which deployment method allows for multiple platforms? ()A. IPsec enforcementB. 802.1X enforcementC. Source IP enforcementD. Odyssey Access Client

考题 A client has a temporary deployment of a new static application that needs to run for a short period of time and is not going to change.How can this deployment be achieved with a minimum of effort and time?()A.Run a system WPAR and deploy the application.B.Create a new LPAR and deploy the application.C.Create an application WPAR to deploy the application.D.Create an LPAR hosted by a VIO server and deploy the application.

考题 Which two code fragments correctly create and initialize a static array of int elements()A、static final int[]a={100,200};B、static final int[]a;static{a=new int[2];a[0]=100;a[1]=200;}C、static final int[]a=new int[2]{100,200};D、static final int[]a;static void int(){a=new int[3];a[0]=100;a[1]=200;}

考题 A system administrator has set up a Virtual IO Server to manage three micropartitioned LPARs. Physical disks are attached to the Virtual IO Server which is accessed through Multipath IO.  What should the administrator know about monitoring for error conditions with virtual disks?()A、Both permanent and temporary virtual hardware error messages are logged to each client partition sharing the device.B、Both permanent and temporary error messages for virtual hardware are logged at each occurrence on the Virtual IO Server and then propagated to the client partition.C、Temporary error messages for virtual hardware are logged at each occurrence on the Virtual IO Server. Permanent error messages for virtual hardware are stored on the client partition.D、Temporary error messages for virtual hardware will not necessarily be propagated to the client partition. Permanent error messages for virtual hardware are only logged once on the Virtual IO Server.

考题 ompany.com has a Micro-Partitioned p5-570 4-way with six application partitions and two VIO servers. Each VIO server has been allocated 0.5 CPU and the application servers have been allocated 0.4 CPUs. The marketing department wants to deploy a new Web server to support the release of a product. The systems architect has recommended that the Web server will require a whole CPU. Which of the following should the technical specialist suggest to provide the most cost-effective deployment?()A、Remove one application server partition and apply its CPU resources to the Web server.B、Reassign the CPU from one of the VIO servers and create the new partition.C、Add 0.6 CPU to one of the application servers and run the Web service with the application. D、Reassign a total of 0.4 CPUs from the application servers and create a new partition with awhole CPU for new deployment.

考题 ompany.com has recently received a new p5-570 in the data center and wants to connect it to an existing HMC environment where each of the existing POWER5 servers has been assigned a static IP address. Which of the following actions should the technical specialist perform to set the service processor network address for a static IP?()A、Configure the IP address through the first client partition.B、Configure the IP address through the ASMI menus.C、Configure the POWER5 service processor for DHCP from the HMC DHCP server.D、Configure the HMC to use the default IP address on the service processor when acquiring the managed server.

考题 A customer has installed UAC in their network. They have both Windows and Linux endpoints andmust choose a deployment method that everyone can use. Which deployment method allows for multiple platforms? ()A、IPsec enforcementB、802.1X enforcementC、Source IP enforcementD、Odyssey Access Client

考题 A customer has a development environment that uses the auto-deployment feature. The customer  claims the application is not redeployed even if the new version is copied to an application  subdirectory. Which two parameters of the configuration should you check?()A、Check if archive file in the compressed version has a new REDEPLOY file.  B、If server was started in the Development Mode. Auto-deployment is not supported in production  mode.  C、If the application includes an EJB 3 module. Auto-deployment is not supported for EJBs.D、You change JVM from HotSpot to JRockit. Auto-deployment is not supported in HotSpot auto  deployment.  E、If the domain is a single-server domain. Auto-deployment is not supported in multiserver  domains.

考题 You are doing an environment assessment for a client that has invested in Oracle RAC for fault tolerance, load balancing, and scalability. The client also invested in clustered Oracle WebLogic Server. You notice that this client’s environment is not integrated for active-active high availability deployment of applications.  What will be your recommendation to achieve that ? ()A、 MetaLink to RACB、 ClusterLink to RACC、 TopLink to RACD、 GridLink to RAC

考题 You create Windows Forms applications by using the .NET Framework 3.5.You plan to deploy a new application.You need to ensure that on deployment, the application meets the following requirements:  (1)It is executed on the client computer   (2)It is removed from the client computer after the application is closed   (3)It is not displayed in theAdd/Remove programs panel on the client computer    What should you do?()A、Deploy the application to a central network server.Access the application by using the Remote Desktop Connection tool.B、Deploy the application by using the ClickOnce technology.Use the Mage exe tool to set the Online Only option in the deployment manifest.C、Deploy the application by using the ClickOnce technology.Set the Install attribute of the deployment tag to true in the deployment manifest.D、Deploy the application to a CDROM by using the ClickOnce technology.Execute the application from the CDROM

考题 You are developing a Windows Communication Foundation (WCF) client application. The client application contains the following code. [ServiceContract] public interface ISocialStatus { [OperationContract] [WebInvoke(UriTemplate = "/statuses/update.xml?status-{text}")] void UpdateStatus(string text); } public class SocialClient : ClientBase, ISocialStatus { ... } The configuration file contains the following lines. binding="webHttpBinding" contract="SocialApp.ISocialStatus" bindingConfiguration="BindingConfig" / You need to ensure that the service is consumed. Which code segment should you use?()A、var client = new SocialClient("SocialClient"); client.Endpoint.Behaviors.Add(new WebHttpBehavior());B、var client = new SocialClient("SocialClient"); client.Endpoint.Behaviors.Add(new WebScriptEnablingBehovior());C、var client = new SocialClient("POST"); client.Endpoint.Behaviors.Add(new WebHttpBehovior());D、var client = new SocialClient("POST"); client.Endpoint.Behaviors.Add(new WebScriptEnablingBehavior());

考题 You create Windows Forms application by using the .Net FrameWork 3.5 You plan to deploy a new application to client computers that use the Windows Vista operating system. You need to ensure that the user can install the application without being prompted fore elevated permission.What should you do?()A、Sign the deployment manifest by using an Authenticode certificate.Publish the application to a CD-ROM.Install the application on each client computer from the CD-ROMB、Sign the deployment manifest by using an Authenticode certificate.Publish the application to a server on the network.Install the application on each client computer.C、Add the requestedExecutionLevel="highestAvailable" attribute to the deployment.Publish the application to a server on the network.Install the application on each client computer.D、Add the requestedExecutionLevel="requiresAdministrator" attribute to the deployment.Publish the application to a server on the network.Install the application on each client computer.

考题 You create Windows Forms applications by using the .NET Framework 3.5.You plan to deploy a new application by using the ClickOnce deployment technology.  The application is signed by using a certificate obtained from a trustworthy authority. You need to ensure that the application can be deployed as a trusted application to Windows Vista client computers on a corporate network.What should you do?()A、Create a manifest and set the RequestedExecutionLevel level attribute to AsInvoker.B、Create a manifest and set the RequestedExecutionLevel level attribute to AsAdministrator.C、Create a new certificatetrust list (CTL).Install the CTL on the server that has the ClickOnce application published.D、Create a new certificate trust list (CTL).Request the network administrator to deploy the CTL by using Group Policy.

考题 Your network has 1,000 client computers that run Windows 7.   You plan to deploy a new application.   You need to ensure that the application deploys only during non-business hours.   What should you do?()A、Use Group Policy.B、Use Windows Deployment Services with a schedule cast.C、Use Microsoft System Center Configuration Manager.D、Use a logon script.

考题 Your network contains a single Active Directory site.   You plan to deploy 1,000 new computers that will run Windows 7 Enterprise. The new computers have Pre-boot Execution Environment (PXE) network adapters.   You need to plan the deployment of the new computers to meet the following requirements:  èSupport 50 simultaneous installations of Windows 7   èMinimize the impact of network operations during the deployment of the new computers   èMinimize the amount of time required to install Windows 7 on the new computers What should you include in your plan?()A、Deploy the Windows Deployment Services (WDS) server role. Configure the IP Helper tables on all  routers.  B、Deploy the Windows Deployment Services (WDS) server role. Configure each WDS server by using native mode.  C、Deploy the Windows Deployment Services (WDS) server role and the Transport Server feature.Configure the Transport Server to use a custom network profile.  D、Deploy the Windows Deployment Services (WDS) server role and the Transport Server feature. Configure the Transport Server to use a static multicast address range.

考题 单选题A customer has installed UAC in their network. They have both Windows and Linux endpoints andmust choose a deployment method that everyone can use. Which deployment method allows for multiple platforms? ()A IPsec enforcementB 802.1X enforcementC Source IP enforcementD Odyssey Access Client

考题 单选题Your network contains an Active Directory domain. You have a server that runs Windows Server 2008 R2 and has the Remote Desktop Services server role enabled. All client computers run Windows 7. You need to plan the deployment of a new line-of-business application to all client computers. The  deployment must meet the following requirements:   èUsers must access the application from an icon on their desktops.   èUsers must have access to the application when they are not connected to the network. What should you do?()A Publish the application as a RemoteApp.B Publish the application by using Remote Desktop Web Access (RD Web Access).C Assign the application to the Remote Desktop Services server by using a Group Policy object (GPO).D Assign the application to all client computers by using a Group Policy object (GPO).

考题 多选题A customer has a development environment that uses the auto-deployment feature. The customer  claims the application is not redeployed even if the new version is copied to an application  subdirectory. Which two parameters of the configuration should you check?()ACheck if archive file in the compressed version has a new REDEPLOY file.BIf server was started in the Development Mode. Auto-deployment is not supported in production  mode.CIf the application includes an EJB 3 module. Auto-deployment is not supported for EJBs.DYou change JVM from HotSpot to JRockit. Auto-deployment is not supported in HotSpot auto  deployment.EIf the domain is a single-server domain. Auto-deployment is not supported in multiserver  domains.

考题 单选题Your company has 1,000 client computers.  You are planning to deploy Windows 7 and a new line-of-business application.   You have the following requirements:   Install the application as part of the standard Windows 7 deployment. Use a single Windows 7 image for the deployment.  The application must be available for use on client computers that are not connected to the network.   You need to ensure that the application is installed on all new client computers.   What should you do?()A Publish the application by using Group Policy Software Installation.B Deploy the application by using Windows Server Update Services (WSUS).C Service an online image of Windows 7 to add the new application.D Service an offline image of Windows 7 to add the new application.

考题 单选题Your company has 1,000 client computers. Each client computer has 1 GB of RAM. You are planning to deploy Windows 7 Enterprise.   You need to design a zero-touch deployment strategy to increase the number of client computers that can be imaged at one time.   What should you do?()A Increase the amount of RAM on the client computers.B Change from unicast to multicast deployment of images.C Change from multicast to unicast deployment of images.D Decrease the trivial file transfer protocol (TFTP) block size on the TFTP server.

考题 单选题You are creating a Windows Forms Application by using the .NET Framework 3.5.You plan to deploy a new Applciation.You need to ensure that on deployment, the application meets the following requirements;    (1)It is executed on the client computer.   (2)It is removed from the client computer after the application closed.   (3)It is not displayed in the Add/Remove programs panel on the client computer.     What sould you do?()A Deploy the application to a central network server.- Access the application by using hte Remote Desktop Connection tool.B Deploy the application by using the ClickOnce technology.- Use the Mage.exe tool to set the Online Only option in the deployment manifest.C Deploy the application by using the ClickOnce technologoy.- Set the Install attiribute of the deployment tag to true in the deployment manifest.D Deploy the application to a CD-ROM by using the ClickOnce technology. - Execute the application from the CD-ROM.

考题 单选题You are doing an environment assessment for a client that has invested in Oracle RAC for fault tolerance, load balancing, and scalability. The client also invested in clustered Oracle WebLogic Server. You notice that this client’s environment is not integrated for active-active high availability deployment of applications.  What will be your recommendation to achieve that ? ()A  MetaLink to RACB  ClusterLink to RACC  TopLink to RACD  GridLink to RAC

考题 单选题Your network consists of a single Active Directory domain.You implement a new subnet. On the new subnet, you install a new DHCP server that runs Windows Server 2003 Service Pack 2 (SP2). You create a scope for the 192.168.10.0/24 network ID. You connect a new client computer named Client1 to the subnet. Client1 runs Windows XP Professional Service Pack 3 (SP3). You discover that Client1 has an IP address of 169.254.10.22 and is configured to receive IP configurations automatically.You need to ensure that Client1 receives an IP configuration from Server1. What should you do?()A Activate the DHCP scope.B Create a reservation for Client1.C Enable BOOTP forwarding on the router.D Configure a DHCP Relay Agent on the subnet.

考题 单选题A Customer has a proprietary server deployment solution that uses a combination of disk imaging and application pushing technology.  They need to get a working Windows 2003 image for their new servers as soon as possible for deployment with their provisioning system. Which of the following methods can achieve this? ()A Install Windows 2003 using the F6 supply Mass Storage Controller option B Replace Customers deployment solution with Tivoli Provisioning Manager for OS Deployment Director Edition C Use ServerGuide to install Windows 2003 D Deploy Customers existing image and use UXSPi to update IBM specific drivers 

考题 多选题Your company has more than 1,000 client computers.  You deploy Windows 7 by using six different images.  A driver that is included in the images needs to be replaced.   You have the following requirements:   Update the Windows 7 images with the new driver. Ensure that the old driver is no longer available.    You need to define an image-update strategy that meets the requirements.   What are two possible ways to achieve this goal?()AMount each image by using the Deployment Image Servicing and Management (DISM) tool, and then copy the newdriver into a new folder in the image.BMount each image by using the Deployment Image Servicing and Management (DISM) tool, and then delete the olddriver and inject the new driver.CMount each image by using ImageX,and then install the new driver.DDeploy each image to a reference computer, and then uninstall the old driver and install the new driver. Capture the new image

考题 单选题A client purchased a new internal hard drive to act as a second drive on a legacy machine. When the client attempts to install the drive, the cable connector on the new drive is not compatible with the available IDE cables. It is determined that the client has purchased a SATA hard drive. Which of the following would the technician recommend as the BEST solution to this situation?()A Have the client purchase a SATA compatible system board.B Have the client purchase a SATA to IDE conversion kit.C Have the client return the drive and purchase an IDE compatible drive.D Have the client purchase a SCSI to SATA conversion kit.