You work as an application developer at Certkiller .com. You are currently in the process of creating a new application for Certkiller .com. You are required to read compressed data files that has been sent by Certkiller .com‘s sales offices.These data files are less than 4 GB in size, but was compressed without cyclic redundancy. You want to write a method that receives the compressed files and return the uncompressed data as a byte array.What should you do?()
A.
B.
C.
D.
第1题:
You work as an application developer at Certkiller .com. You are in the process of creating an application for Certkiller .com’s Human Resources department that tracks employee benefits. You have to store current employee data without recompiling the application. You elect to store this employee data as a custom section in the application configuration file. The relevant portion of the application configuration file is shown in the following exhibit: <?xml version="1.0" encoding="utf-8" ?>
第2题:
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?()
第3题:
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?()
第4题:
Create a custom section handler class that inherits the ConfigurationSection interface.
Add a section element to the EmployeeSection element of the application configuration file.
Create a custom section handler class that implements the IConfigurationSectionHandler interface.
Add an EmployeeSection element to the configSections element of the application configuration file.
Create a custom section handler class that implements the IApplicatioSettingsProvider interface.
Add a section element to the configSections element of the application configuration file.
第5题:
A
B
C
D
第6题:
A
B
C
D
第7题:
AppDomain.CurrentDomain.ShadowCopyFiles
AppDomain.CurrentDomain.CachePath
AppDomain.CurrentDomain.ConfigurationFile
AppDomain.CurrentDomain.Evidence
第8题:
IDictionary
IComparable
IComparer
IEqualityComparer
第9题:
Use the ServiceBase class.
Use the ServiceInstaller class.
Use the ServiceManager class.
Use the ServiceController class.
第10题:
Use the ServiceController class.
Use the ServiceBase class.
Use the ServiceProcessInstaller class.
Use the ServiceInstaller class.
第11题:
You should change the IIS isolation mode.
You should assign the application to another application pool.
You should configure all applications that are part of your application's application pool in orderto use the same version of ASP.NET.
You should run the Aspnet_regiis.exe Tool.
You should restart the application pool that hosts the application.
第12题:
A
B
C
D
第13题:
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?()
第14题:
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?()
第15题:
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?()
第16题:
A
B
C
D
第17题:
A
B
C
D
第18题:
A
B
C
D
第19题:
Int32
UInt16
UInt32
Int16
第20题:
Library application files (.dll).
All assembly files, no matter what there file extensions are.
Application configuration files (.config).
Standalone application files (.exe).
第21题:
Use the Enqueue method of the MyQueue object.
Use the Contains method of the MyQueue object.
Use the Dequeue method of the MyQueue object.
Use the Peek method of the MyQueue object.
第22题:
A
B
C
D
第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 ();