⟩ If you are creating the logical design for the new reservation application. Which entity or entities should you include? (Choose all options that apply)A. AirportB. FlightC. CustomerD. GateE. City
A:Airport
B. Flight
C. Customer
A:Airport
B. Flight
C. Customer
Suppose You create a serviced component named Scheduler. Scheduler is registered in a libraryapplication. The Scheduler methods parse String objects into Date Time objects.You write a console application named EXCoverage.exe to test each method in Scheduler. Youwant Coverage.exe to test Scheduler for multiple cultures to verify its globalization support.What should you do?A. Create a CultureInfo object for each culture locale before calling the Scheduler methods.B. Create a RegionInfo object for each culture locale before calling the Scheduler methods.C. Set the current thread?s CurrentCulture property to each culture locale before calling theScheduler methods.D. Create a EXCoverage.exe.config file and add a <location> element to the configuration file foreach culture locale.
Suppose You are creating an XML Web service named ListBoxService. This service provides content,such as states, countries, and geographical regions, for use in drop-down list boxes.ListBoxService contains a Web method named RetrieveRegionsListBox. This method runs aDataSet object that contains every geographical region in the world.RetrieveRegionsListBox calls a Microsoft SQL Server database to load the DataSet object withregion data. You want to minimize the amount of time the method takes to return to the caller.What should you do?A. Use a stored procedure to return the data.B. Store each DataSet object by using the Session object.C. Set the BufferResponse property of the WebMethod attribute to false.D. Set the CacheDuration property of the WebMethod attribute to an interval greater than zero.
How to create a serviced component named SessionDispenser. This computer is in the XYZ.Utilitiesassembly and is registered in a COM+ server application. SessionDispenser has multiple callers.You discover that there are logic problems in the Create New Session method. You want todebug any calls to this method.What should you do?A. Open the SessionDispenser solution.Set a breakpoint on the CreateNewSession method.Start the debugger.B. Attach the debugger to the client process.Set a breakpoint on the SessionDispenser.CreateNewSession method.C. Attach the debugger to the XYZ.Utilites.exe process.Set a breakpoint on the CreateNewSession method.D. Attach the debugger to a Dllhost.exe process.Set a breakpoint on the CreateNewSession method.
Suppose You are planning to create a DataSet object named EXDataSet to be used in a bond-tradingapplication.Several developers will need to write code to manipulate EXDataSet, and you want to ensure thatmyDataSet is easy for them to use. You decide to create EXDataSet as a strongly typed data set.Which two actions should you take? (Each correct answer presents part of the solution. Choosetwo)A. Create an XSD schema that defines EXDataSet.B. Create an XDR schema that defines EXDataSet.C. Create a class for EXDataSet that is based on the schema and that inherits from the DataSetclass.D. Create a class for EXDataSet that is based on the schema and that inherits from theXmlSchema class.E. Create a key pair for EXDataSet by using the Strong Name tool (Sn.exe).
Your company frequently receives product information from external vendors in the form of XMLdata.You receive XML document files, an .xdr schema file, and an .xsd schema file.You need to write code that will create a typed DataSet object on the basis of product information.Your code will be used in several Visual studio .NET applications to speed up data processing.You need to create this code as quickly as possible.What should you do?A. Create the code manually.B. Use XmlSerializer.Serialize to generate the code.C. Use the XmlSerializer.Deserialize to generate the code.D. Use the Xml Schema Definition tool (Xsd.exe) to generate the code.
You have a DataSet object named myDataSet. This object contains two DataTable objectsnamed Customers and Orders. Customers has a column named CustomerID, which is unique toeach customer.Orders also has a column named CustomerID. You want to use the GetChildRows method of theDataRow object to get all orders for the current customers.What should you do?A. Add a foreign key constraint on CustomerID of Orders between Customers and Orders.B. Add a data relation to myDataSet on OrderID between Customers and Orders.C. Create a unique constraint on CustomerID of Customers..D. Create a primary key on CustomerID of Customers.
Suppose XYZ Inc. provides a credit card processing application for its customers. The current applicationsupports only computers that run on a Microsoft Windows operating system.You are asked to rewrite the current application as a .NET application. This .NET applicationdoes not need to be backward compatible with the current application.You must ensure that this new application meets the following requirements? Must support asynchronous processing.? Must be able to pass data through firewalls.? Must pass only SOAP-Compliant formatted data validated by using an XSD schema.? Must not be limited to client computers running on a Microsoft operating system.You want to accomplish this task by using the minimum amount of development effort.Which type of .NET application should you use?A. Windows serviceB. XML Web serviceC. Serviced componentD. .NET Remoting object
Suppose You create three Windows services named EXService1, EXService2, and EXService3. You wantto install all three services on a computer named XYZA by using the Installer tool (Installutil.exe).On the command line of XYZA, you enter and run the following commandInstallutil EXService1 EXService2 EXService3During the installation process, EXService3 throws an installation error. The installation processcompletes.How many of the three services are now installed on XYZ1?A. NoneB. OneC. TwoD. Three.
Suppose You create an XML Web service named WeatherService. This service contains a Web methodnamed RetrieveWeather. RetrieveWeather takes as input a city named and returns the currentweather conditions for that city.You need to provide callers of this service with the URL they need to issue an HTTP-GET againstWeatherService.Which URL should you use?A. http//XYZSrv/AppPath/WeatherService.asmx/cityname=somecityB. http//XYZSrv/AppPath/WeatherService.asmx/RetrieveWeather?cityname=somecityC. http//XYZSrv/AppPath/WeatherService/RetreieveWeather.asmx?cityname=somecityD. http//XYZSrv/AppPath/WeatherService/RetrieveWeather?cityname=somecity
You create an XML Web service named TimeService. Each time TimeService is started, it checksfor the existence of an event log named TimeServiceLog. If TimeServiceLog does not exist,TimeService creates it.You discover that when TimeService creates TimeServiceLog, it throws aSystem.Security.SecurityException. The exception includes the following message ?Requestedregistry access is not allowed?. You need to resolve this problem.What should you do?.A. Configure Inetinfo.exe to run as the local administrator user account.B. Create an installer for TimeService, and create the new event log in the installer code.C. Modify the Web.config file by adding an identity element to impersonate the LOGON userspecified by Internet Information Services (IIS).D. Modify the permissions of theHKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesEventlog registry key to givefull control to the IUSR_computername user account.