考题
You are developing a Windows Service. The Windows Service will host a Windows Communication Foundation (WCF) service.The Windows Service class will inherit from ServiceBase.You need to ensure that the WCF service starts when the Windows Service is restarted.What should you do in the Windows Service class?()A.B.C.D.
考题
You are developing an application that performs file backups in the background. The background application will host a Windows Communication Foundation (WCF) service and must be active as soon as the machine is running. The background application will not have a user interface. A front-end application will consume the WCF service and will provide the user interface.You need to choose a host environment for the WCF service.Which hosting environment should you choose? ()A. Microsoft Internet Information Services (IIS) 6.0B. Windows Process Activation Services (WAS)C. A Windows Forms applicationD. A Windows Service
考题
You have a computer that runs Windows Vista.You need to ensure that the temporary Internet files are deleted when you close Windows Internet Explorer.What should you do?()
A.AB.BC.CD.D
考题
You have an application that is incompatible with Windows Aero.You need to ensure that Windows Aero is automatically disabled when you run the application.What should you do?()
A.AB.BC.CD.D
考题
You perform an in-place upgrade on a Microsoft Windows XP Service Pack 2 (SP2) computer to Windows Vista.After the upgrade, you attempt to run a custom application. You receive the following error message: This application is only designed to run on Windows XP or later.”You need to run the application on Windows Vista.What should you do?()A.AB.BC.CD.D
考题
You perform a clean installation of Microsoft Windows Vista on the first partition. Then, you install Microsoft Windows XP Professional on the second partition of the same machine.You are able to log on to Windows XP Professional but do not have the option to boot to Windows Vista.You need to be able to dual boot the computer.What should you do?()A.AB.BC.CD.D
考题
You plan to deploy Windows 7 images. You need ensure that you can deploy images by using the WindowsPreinstallation Environment (Windows PE). What should you do add to the Windows PE image?()A、Imagex.exeB、Loadstate.exeC、Mighost.exeD、Usmtutils.exe
考题
You work as the IT professional in an international company which is named Wiikigo. You are experiencedin implementing and administering a network operating system. You are specialized in deploying servers,configuring Windows Server 2008 Terminal services and network application services,and configuring aweb services infrastructure. You have the Windows Deployment Services (WDS) role installed on a serverthat runs Windows Server 2008. You plan to install Windows Vista on a computer that does not supportPreboot Execution Environment (PXE). You have a Windows Vista image that is stored on the WDS server. You have to start the computer and install the image that is stored on the WDS server. What should you create?()A、You should create a discover imageB、You should create an install imageC、You should create a capture imageD、You should create a CD-ROM that contains PXE drivers
考题
You have a computer that runs Windows Vista. You need to identify whether the computer can be upgradedto Windows 7. Which tool should you use?()A、Windows Anytime Upgrade for Windows 7.B、Windows Anytime Upgrade for Windows Vista.C、Windows 7 Upgrade Advisor.D、Windows Vista Upgrade Advisor.
考题
Windows NT 4.0 is currently on the system you are using, and you want to install Windows 2000 Professional. Windows NT 4.0 is currently on an NFTS partition. For some reason you have decided that you are not going to upgrade, but rather, you are going to run this in a dual boot fashion. What do you need to do? ()A、Can’t be done.B、You need to put Windows 2000 on a separate partition from Windows NT 4.0C、You need to put Windows 2000 on the same partition as Windows NT 4.0.D、You need to upgrade Windows NT 4.0 to SP4.
考题
You have an Active Directory Domain Services (AD DS) domain. All servers run Windows Server 2008 R2. The Remote Desktop Services (RDS) environment includes a Remote Desktop Session Host (RD Session Host) server in the LAN environment, and a Remote Desktop Gateway (RD Gateway) server in the perimeter network. You deploy a Remote Desktop Web Access (RD Web Access) server in the perimeter network. You publish a RemoteApp application. The RemoteApp application is not visible to users when they log in to RD Web Access.You need to ensure that authorized users can run RemoteApp applications from RD Web Access. What should you do?()A、Restart the World Wide Web Publishing Service on the RD Web Access server.B、Disab le Forms Authentication on the Default Web Site on the RD Web Access server.C、Allow Windows Management Instrumentation (WMI) communication between the RD Gateway server and the RD Session Host server.D、Allow Windows Management Instrumentation (WMI) commu nication between the RD Web Access server and the RD Session Host server.
考题
You have a computer that runs Windows 7 Professional. You need to upgrade the computer to Windows 7Ultimate. You must achieve this goal in the minimum amount of time. What should you do?()A、Run Windows Update.B、Run Windows Anytime Upgrade.C、From the Windows 7 installation media, run Setup.exe.D、From the Windows 7 installation media, run Migwiz.exe.
考题
You have a computer that runs Windows XP. The computer has one partition. You install Windows 7 on thecomputer. You need to migrate a user profile from the Windows XP installation to Windows 7 installation. What should you do first?()A、From Windows 7, run Scanstate.exe /offlineWinOld:c:/windows.B、From Windows 7, run Scanstate.exe /offlineWinOld:c:/windows.old.C、At the command prompt, run Xcopy /s /e c:/windows/users/*.* c:/users/.D、At the command prompt, run Xcopy /s /e c:/windows.old/documents and settings/*.* c:/users/.
考题
You are designing a Windows 7 deployment image. You receive a baseline image over the network, from a different geographic location. You need to verify that the baseline image is valid. Which tool should you use?()A、ImageXB、Windows Compatibility EvaluatorC、Windows System Image Manager (Windows SIM)D、the Deployment Image Servicing and Management (DISM) tool
考题
You have a single server that has a Server Core Installation of Windows Server 2012 R2. How would you install the graphical user interface (GUI) to this server?()A、You should use Windows PowerShell to run the Enable-NetFirewallRule command.B、You should use Windows PowerShell to run the Add-WindowsPackage command.C、You should use Windows PowerShell to run the Install-WindowsFeature command.D、You should use Server Manager console on to add the User Interfaces.E、You should use Server Manager console to add the Infrastructure feature.F、You should use Server Manager console to add the Windows feature.
考题
You are developing a user control for Windows Presentation Foundation (WPF) application. The user control contains a button. Both the user control and the hosting control must receive the button click event. You need to ensure that the user control responsd to the button click event before hosting control responds to the event. What should you do ?()A、Use a bubbling routed event. In the button click event handler, set the Handled property to TrueB、Use a bubbling routed event. In the button click event handler, set the Handled property to FalseC、Use a standard Microsoft .NET event. Set Handled property to true.D、Use a tunneling routed event. Set the handled property to false.
考题
You are developing a Windows Communication Foundation (WCF) service that does not operate on a duplex channel.You find that operations do not start until all previous operations have finished. The service hosting code contains the following lines.var service = new WarehouseService( ); var host = new ServiceHost(service);You need to ensure that new operations do not wait for previous operations to finish. Which attribute should you use to decorate the service?()A、[ServiceBehavior(InstanceContextMode=InstanceContextMode.Single, ConcurrencyMode=ConcurrencyMode.Multiple)]B、[CallbackBehavior(ConcurrencyMode=ConcurrencyMode.Multiple)]C、[ServiceBehavior(InstanceContextMode=InstanceContextMode.Single, ConcurrencyMode=ConcurrencyMode.Single)]D、[ServiceBehavior(InstanceContextMode=InstanceContextMode.Single, ConcurrencyMode=ConcurrencyMode.Reentrant)]
考题
单选题You are developing an application that performs file backups in the background. The background application will host a Windows Communication Foundation (WCF) service and must be active as soon as the machine is running. The background application will not have a user interface. A front-end application will consume the WCF service and will provide the user interface.You need to choose a host environment for the WCF service. Which hosting environment should you choose? ()A
Microsoft Internet Information Services (IIS) 6.0B
Windows Process Activation Services (WAS)C
A Windows Forms applicationD
A Windows Service
考题
单选题You are deploying a custom Windows 7 system image to a new computer. You perform the following tasks:.Start the new computer by using the Windows Preinstallation Environment (Windows PE) .Connect to ashared network location that contains the Windows 7 image file You need to apply the Windows 7 image tothe computer. What should you do before you apply the image?()A
Mount the image.B
Configure Windows Firewall.C
Configure and format the hard disk drive.D
Initialize the Boot Configuration Data (BCD) store.
考题
单选题You have a computer that runs Windows 7 Home Premium. You need to upgrade the computer to Windows7 Ultimate. You must achieve this goal in the minimum amount of time. What should you do?()A
Perform a Windows Anytime Upgrade.B
Download and run the Windows 7 Upgrade Advisor.C
Insert the Windows 7 installation media. From the Install Windows dialog box, select the Upgrade option.D
Start the computer from the Windows 7 installation media. From the Install Windows dialog box, selectthe Upgrade option.
考题
单选题You need to design a hosting service option for customers who want to access their databases by using their own Active Directory domain accounts. What should you do?()A
Design a hosting service option that duplicates each customer’s domain user account as SQL Serverlogin account.B
Design a hosting service option that provides VPN-based connectivity from each customer’s network tothe SQL Server computer that hosts that customer’s daabase or databases.C
Design a hosting service option that provides a dedicated server to each customer.Join that server to that customer’s Active Directory domainD
Design a hosting service option that configures a unique instance of SQL Server 2005 for each customer.Configure that instance to use Integrated Windows authentication.
考题
单选题You have a computer that runs Windows 7. You install Windows XP in a new partition on the computer anddiscover that you can no longer start Windows 7. You need to start Windows 7 in the minimum amount oftime. What should you do?()A
From Windows XP, modify the default path in the boot.ini file.B
From Windows XP Recovery Console, run the Fixboot command.C
Start the computer from the Windows 7 installation media and select Install now.D
Start the computer from the Windows 7 installation media and run Startup Repair.
考题
单选题You have the following requirements: - Ensure that the business tier can be updated without affecting the application tier. - Use the minimum role instance size that meets or exceeds the current server specifications. You need to recommend a topology for hosting the application in Windows Azure. What should you recommend?()A
Deploy the application tier and the business tier to one role with two Medium instances.B
Deploy the application tier and the business tier to one role with two Large instances.C
Deploy the application tier role to a Medium instance. Deploy the business tier role to a medium instance.D
Deploy the application tier role to a Large instance. Deploy the business tier role to a Large instance.
考题
单选题Windows NT 4.0 is currently on the system you are using, and you want to install Windows 2000 Professional. Windows NT 4.0 is currently on an NFTS partition. For some reason you have decided that you are not going to upgrade, but rather, you are going to run this in a dual boot fashion. What do you need to do? ()A
Can’t be done.B
You need to put Windows 2000 on a separate partition from Windows NT 4.0C
You need to put Windows 2000 on the same partition as Windows NT 4.0.D
You need to upgrade Windows NT 4.0 to SP4.
考题
单选题You are deploying a Web site to a server managed by a hosting company. The only access you have to the server is through FTP. You need to precompile and deploy the Web site without its source files. What should you do? ()A
Use the Copy Web tool.B
Use the Publish Web tool.C
Use XCOPY.D
Use the Web Setup project Installer.
考题
单选题You run a Windows Defender scan on your computer system. The scan identifies one of your applications as having potentially unwanted behavior. You need to continue to use the application. You also need to stop Windows Defender from alerting you about this application. Which Windows Defender option should you use? ()A
IgnoreB
RemoveC
QuarantineD
Always Allow
考题
单选题You plan to deploy Windows 7 images. You need ensure that you can deploy images by using the WindowsPreinstallation Environment (Windows PE). What should you do add to the Windows PE image?()A
Imagex.exeB
Loadstate.exeC
Mighost.exeD
Usmtutils.exe
考题
单选题You are hosting a Windows Communication Foundation (WCF) service at http://www.contoso.com for a law enforcement agency.The agency adds operations to support sending biometric fingerprint data via non-buffered streaming.The service data is routed between intermediaries. The WCF binding you are using by default does not support encryption.You need to ensure that the fingerprint data is not disclosed when passed over the network. What should you do?()A
Use basicHttpBinding with message security to https://www.contoso.comB
Use basicHttpBinding with transport security to https://www.contoso.comC
Use wsHttpBinding with message security to https://www.contoso.comD
Use wsHttpBinding with transport security to http://www.contoso.com