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

题目内容 (请给出正确答案)
单选题
You need to recommend a server build for the Web servers. Which server build should you recommend?()
A

Class 1

B

Class 2

C

Class 3

D

Class 4


参考答案

参考解析
解析: 暂无解析
更多 “单选题You need to recommend a server build for the Web servers. Which server build should you recommend?()A Class 1B Class 2C Class 3D Class 4” 相关考题
考题 You are creating a class that performs complex financial calculations.The class contains a method named GetCurrentRate that retrieves the current interest rate and a variable named currRate that stores the current interest rate.You write serialized representations of the class.You need to write a code segment that updates the currRate variable with the current interest ratewhen an instance of the class is deserialized.Which code segment should you use?()A.B.C.D.

考题 You are working on a debug build of an application.You need to find the line of code that caused an exception to be thrown. Which property of the Exception class should you use to achieve this goal?()A、DataB、MessageC、Stack TraceD、Source

考题 You are creating a Windows Forms Application by using the .NET Framework 3.5.You plan to design a new control that will be used on multiple forms in the app.You need to ensure that the control meets the following requirement  (1)It retrieves data from a MSSQL Server 2008 database instance. (2)It uses WPF classes to display data.  (3)It uses user-customizable actions when the control is first painted on the form.   What should you do?()A、Create a new custom class for the control that is derived from the Control class.B、Create a new custom class for the control that is derived from the UserControl class.C、Create a new custom class for the control that is derived from the ContentControl class.D、Create a new custom class for the control that is derived from the ContentPresenter class.

考题 You work as a Web Developer at Certkiller.com. You are in the process of creating a Webapplication using Microsoft ASP.NET 3.5.  You decide to enable session state for the application. You need to determine whether the sessionID is maintained in the URL of the request.  What should you do?()A、The RequestType property of the HttpRequest class should be accessed.B、The IsCookieless property of the HttpSessionState class should be accessed.C、The UrlDecode method of the HttpServerUtility class should be accessed.D、The UrlEncode method of the HttpServerUtility class should be accessed.

考题 You are developing an ASP.NET Dynamic Data Web application. Boolean fields must display as Yes or No instead of as a check box. You replace the markup in the default Boolean field template with the following markup.You need to implement the code that displays Yes or No. Which method of the FieldTemplateUserControl class should you override in the BooleanField class?()A、OnLoadB、ConstructC、OnDataBindingD、SaveControlState

考题 You are creating a templated Web control for use in your Web application. You need to add the Web control to your Web application pages without compiling your control into a .dll file. What should you do?()A、Ensure that the Web control inherits from the WebControl class.B、Ensure that the Web control inherits from the Control class.C、Ensure that the Web control inherits from the CompositeControl class.D、Ensure that the Web control inherits from the UserControl class.

考题 You are creating a Windows Forms application by using the .NET Framework 3.5.You plan to deploy the application in multiple countries and languages.You need to ensure that the application meets the globalization requirements. Which two actions should you perform?()A、Handle server names and URLs as ASCII dataB、Use Unicode strings throughout the applicationC、Use the NumberFormatInfo class for numeric formattingD、Handle strings as a series of individual characters instead of entire stringsE、Avoid usage of the SortKey class and the CompareInfo class for sorting purposes

考题 You need to select a class that is optimized for key-based item retrieval from both small and large collections. Which class should you choose?()A、OrderedDictionary classB、HybridDictionary classC、ListDictionary classD、Hashtable class

考题 You create a server control that inherits from WebControl. You need to enable the server control to emit markup for a new kind of mobile device. You must not alter the code in the server controls. Which two actions should you perform?()A、Create a class that inherits HtmlTextWriter and that can emit the new markup.B、Create a class that inherits StreamWriter and that can emit the new markup.C、Reference the class in the capabilities element of the new device's browser definition file.D、Reference the class in the controlAdapters element of the new device's browser definition file.

考题 You are developing a custom-collection class.You need to create a method in your class. You need to ensure that the method you create in your class returns a type that is compatible with the Foreach statement. Which criterion should the method meet?()A、The method must return a type of either IEnumerator or IEnumerable.B、The method must return a type of IComparable.C、The method must explicitly contain a collection.D、The method must be the only iterator in the class.

考题 You need to recommend a server build for the Web servers. Which server build should you recommend?()A、Class 1B、Class 2C、Class 3D、Class 4

考题 You create a server control that inherits from WebControl. You need to enable the server control to emit markup for a new kind of mobile device. You must not alter the code in the server controls.()A、Create a class that inherits HtmlTextWriter and that can emit the new markup.B、Create a class that inherits StreamWriter and that can emit the new markup.C、Reference the class in the capabilities element of the new device's browser definition file.D、Reference the class in the controlAdapters element of the new device's browser definitionfile.

考题 You need to recommend a strategy for using managed service accounts on the Web servers.How many managed service accounts should you recommend?()A、1B、2C、3D、5

考题 You are developing a Windows Presentation Foundation (WPF) application. You are implementing a test strategy for the application. You need to ensure that the test class can repeat user input. From which base class should the test class inherit?()A、AutomationElementIdentifierB、AutomationPeerC、KeyboardD、UICues

考题 单选题You are developing a Windows Presentation Foundation (WPF) application. You are implementing a test strategy for the application. You need to ensure that the test class can repeat user input. From which base class should the test class inherit?()A AutomationElementIdentifierB AutomationPeerC KeyboardD UICues

考题 单选题You are working on a debug build of an application.You need to find the line of code that caused an exception to be thrown. Which property of the Exception class should you use to achieve this goal?()A DataB MessageC Stack TraceD Source

考题 单选题You are evaluating the deployment of a Hyper-V server that will host 10 VMs. Each VM will have the following configurations: - 8 GB of memory  - Two virtual processors - One 200-gigabit fixed VHD - Two virtual network adapters  You need to recommend changes to the standard server build to support the planned deployment. Which hardware components should be changed?()A networkingB processorC memoryD storage

考题 单选题You are creating a templated Web control for use in your Web application. You need to add the Web control to your Web application pages without compiling your control into a .dll file. What should you do? ()A Ensure that the Web control inherits from the WebControl class.B Ensure that the Web control inherits from the Control class.C Ensure that the Web control inherits from the CompositeControl class.D Ensure that the Web control inherits from the UserControl class.

考题 单选题You are developing an ASP.NET Dynamic Data Web application. Boolean fields must display as Yes or No instead of as a check box. You replace the markup in the default Boolean field template with the following markup.You need to implement the code that displays Yes or No. Which method of the FieldTemplateUserControl class should you override in the BooleanField class?()A OnLoadB ConstructC OnDataBindingD SaveControlState

考题 单选题You are creating a Windows Forms application by using the .Net Framework 3.5.You plan to design a composite control for the application.You need to derive the control from a base class that supports templates.What should you do?()A Derive from the Control class.B Derive from the UserControl class.C Derive from the ScrollableControl class.D Derive from the ContainerControl class.

考题 单选题You work as a Web Developer at Certkiller.com. You are in the process of creating a Webapplication using Microsoft ASP.NET 3.5.  You decide to enable session state for the application. You need to determine whether the sessionID is maintained in the URL of the request.  What should you do?()A The RequestType property of the HttpRequest class should be accessed.B The IsCookieless property of the HttpSessionState class should be accessed.C The UrlDecode method of the HttpServerUtility class should be accessed.D The UrlEncode method of the HttpServerUtility class should be accessed.

考题 单选题You need to create a class definition that is interoperable along with COM.You need to ensure that COM applications can create instances of the class and can call the GetAddress method. Which code segment should you use?()A AB BC CD D

考题 单选题You need to select a class that is optimized for key-based item retrieval from both small and large collections. Which class should you choose?()A OrderedDictionary classB HybridDictionary classC ListDictionary classD Hashtable class

考题 单选题You use Reflection to obtain information about a method named MyMethod.You need to ascertain whether MyMethod is accessible to a derived class.What should you do?()A Call the IsAssembly property of the MethodInfo class.B Call the IsVirtual property of the MethodInfo class.C Call the IsStatic property of the MethodInfo class.D Call the IsFamily property of the MethodInfo class.

考题 多选题You are creating a Windows Forms application by using the .NET Framework 3.5.You plan to deploy the application in multiple countries and languages.You need to ensure that the application meets the globalization requirements. Which two actions should you perform?()AHandle server names and URLs as ASCII dataBUse Unicode strings throughout the applicationCUse the NumberFormatInfo class for numeric formattingDHandle strings as a series of individual characters instead of entire stringsEAvoid usage of the SortKey class and the CompareInfo class for sorting purposes

考题 单选题You are developing a custom-collection class.You need to create a method in your class. You need to ensure that the method you create in your class returns a type that is compatible with the Foreach statement. Which criterion should the method meet?()A The method must return a type of either IEnumerator or IEnumerable.B The method must return a type of IComparable.C The method must explicitly contain a collection.D The method must be the only iterator in the class.

考题 单选题You are creating a Windows Forms Application by using the .NET Framework 3.5.You plan to design a new control that will be used on multiple forms in the app.You need to ensure that the control meets the following requirement  (1)It retrieves data from a MSSQL Server 2008 database instance. (2)It uses WPF classes to display data.  (3)It uses user-customizable actions when the control is first painted on the form.   What should you do?()A Create a new custom class for the control that is derived from the Control class.B Create a new custom class for the control that is derived from the UserControl class.C Create a new custom class for the control that is derived from the ContentControl class.D Create a new custom class for the control that is derived from the ContentPresenter class.