You work as the application developer at Certkiller .com. Certkiller .com uses Visual Studio.NET 2005 as its application development platform.You are developing a .NET Framework 2.0 Windows Service application and are busy writing the following installation code for the Windows service:<RunInstallerAttribute(True)> Public Class TestServiceInstaller Implemets Installer‘Additional code to go hereEnd ClassYou are required to install the Windows service and write the values associated with the service in the Windows Registry.What should you do?()
A.The Assembly Registration Tool (Regasm.exe) should be used.
B.The Global Assembly Cache Tool (Gacutil.exe) should be used.
C.The .NET Services Installation Tool (Regsvcs.exe) should be used.
D.The Installer Tool (InstallUtil.exe) should be used.
第1题:
You work as a database administrator for Certkiller .com. You have been asked to use a centralized administrative tool to administer your database servers and application servers. In order to achieve the objective, which component would you configure on each database server?()
第2题:
You work as the application developer at Certkiller .com. Certkiller .com uses Visual Studio.NET 2005 as its application development platform. You are developing a Windows Service application. You need to change the security context in which the service runs. The service will be run in context of a non-privileged user on the local computer and present anonymous credentials to any remote server. You are required to set the Account property of the ServiceProcessInstaller class to specify the service account. What should you do?()
第3题:
You work as an application developer at Certkiller .com. You are developing a collection class named ClientCollection, which is to be used for storing the names of Certkiller .com’s clients that are situated in various geographical areas. These client names are represented by the Client class. You are planning to create a method named SortClients in the ClientCollection class to arrange Client objects in ascending order. You need to ensure that the appropriate interface is implemented by the Client class to allow sorting.What interface should be used?()
第4题:
You work as the application developer at Certkiller .com. Certkiller .com uses Visual Studio.NET 2005 as its application development platform. You are developing a .NET Framework 2.0 Windows Service application and are busy writing the following installation code for the Windows service:
第5题:
You work as the application developer at Certkiller .com. Certkiller .com uses Visual Studio.NET 2005 as its application development platform.You have recently finished development of a class named TestReward and package the class in a .NET 2.0 assembly named TestObj.dll. After you ship the assembly and it is used by client applications, you decide to move the TestReward class from TestObj.dll assembly to the TestRewardObj.dll Assembly. You are to ensure when you ship the updated TestObj.dll and TestRewardObj.dll assemblies that the client applications continue to work and do not require recompiling.What should you do?()
第6题:
A
B
C
D
第7题:
A
B
C
D
第8题:
The Assembly Registration Tool (Regasm.exe) should be used.
The Global Assembly Cache Tool (Gacutil.exe) should be used.
The .NET Services Installation Tool (Regsvcs.exe) should be used.
The Installer Tool (InstallUtil.exe) should be used.
第9题:
IDictionary
IComparable
IComparer
IEqualityComparer
第10题:
Use the ServiceBase class.
Use the ServiceInstaller class.
Use the ServiceManager class.
Use the ServiceController class.
第11题:
A
B
C
D
第12题:
The output will be FormsUser.
The output will be Certkiller/RAllen.
The output will be Certkiller/Anonymous.
The output will be Certkiller/WebApp
第13题:
You work as a Web Developer at Certkiller.com. You are in the process of creating a Webapplication using Microsoft ASP.NET 3.5. The configuration below exists in the Web.config file:
第14题:
You work as an application developer at Certkiller .com. You are required to dynamically load assemblies into an application domain. You are using the Load method of the AppDomain class. What types of files can you this use method for?()
第15题:
You work as an application developer at Certkiller .com. You are currently in theprocess of reviewing an application that was created by a fellow developer.The application that you are reviewing includes a declaration for a collection named EmployeeList, which stores Employee objects. The declaration is shown below: public class EmployeeList : Enumerator, IEnumerable { // Class implementation } You require the ability to iterate through the EmployeeList with minimum development effort.What should you do?()
第16题:
You work as the application developer at Certkiller .com. Certkiller .com uses Visual Studio.NET 2005 as its application development platform.You are developing a .NET Framework 2.0 application used to store a type-safe list of names and e-mail addresses. The list will be populated all at ones from the sorted data which means you well not always need to perform insertion or deletion operations on the data. You are required to choose a data structure that optimizes memory use and has good performance.What should you do?()
第17题:
The System.Collections.Generic.SortedList class should be used
The System.Collections.HashTable class should be used
The System.Collections.Generic.SortedDictionary class should be used
The System.Collections.SortedList class should be used
第18题:
A
B
C
D
第19题:
A
B
C
D
第20题:
AppDomain.CurrentDomain.ShadowCopyFiles
AppDomain.CurrentDomain.CachePath
AppDomain.CurrentDomain.ConfigurationFile
AppDomain.CurrentDomain.Evidence
第21题:
Library application files (.dll).
All assembly files, no matter what there file extensions are.
Application configuration files (.config).
Standalone application files (.exe).
第22题:
Use the ServiceController class.
Use the ServiceBase class.
Use the ServiceProcessInstaller class.
Use the ServiceInstaller class.
第23题:
Use the following code: AppDomain appInfo = ApplicationDomain.Current;
Use the following code: AppDomain appInfo = AppDomain.CurrentDomain ();
Use the following code: AppDomain appInfo = Thread.GetDomain ();
Use the following code: AppDomain appInfo = MainThread.GetDomain ();
第24题:
A
B
C
D