What should you do?
You create a model named Strategic Plan. The Strategic Plan model has an associated assumptions model named Strategic Plan Assumptions. You modify the data in the Strategic Plan Assumptions model. You discover that the Strategic Plan model displays the original data. You need to update the data in the Strategic Plan model. What should you do?
What should you do?
You are creating an ASP.NET application by using the .NET Framework 3.5. The application will be accessed by users in remote locations over the Internet. You plan to use ASP.NET role management. You need to ensure that any authorization information cached on remote client computers is as secure as possible. What should you do?
What should you do?
A file named Util.asmx contains the following code segment.
(Line numbers are included for reference only.)
01 <%@ WebService Language=”C#” class=”Exam.Util” %>
02 namespace Exam {
03 public class Util {
04 public string GetData() {
05 return “data”;
06 }
07 }
08 }
You need to expose the GetData method through a Web service.
What should you do?
What should you do first?
You are configuring an association between two models.
Each model contains the following dimensions:
Scenario
DestinationCurrency
SourceCurrency
ExchangeRate
Time
You map the dimensions between the two models as shown in the following table.
You need to ensure that data can be transferred between the two models.
What should you do first?
What should you do?
You are creating an ASP.NET application by using the .NET Framework 3.5.
The application must use an existing Microsoft SQL Server database that stores user names and passwords in the same table. You are not allowed to change the database schema.
You need to ensure that the application can use the Login, LoginView, LoginStatus, LoginName, and PasswordRecovery controls to manage user data.
What should you do?
Which two actions should you perform?
You are writing an application that handles the batch processing of user accounts.
The application assigns network identities for users by calling the following Web service method.
[WebMethod]
public string GetNetworkID(string name)
{ …}
The application calls the Web
service using the following code.
(Line numbers are included for reference only.)
01 void ProcessPeople(List<Person> people) {
02 PersonService serviceProxy = new PersonService();
03 serviceProxy.GetNetworkIDCompleted += new
04 GetNetworkIDCompletedEventHandler(GetNetworkIDCompleted);
05 for (int i = 0; i < people.Count;i++) {
06 …
07 }
08 }
09
10 void GetNetworkIDCompleted(object sender,
11 GetNetworkIDCompletedEventArgs e){
12 Person p = null;
13 …
14 p.NetworkID = e.Result;
15 ProcessPerson(p);
16 }
You need to ensure that the application can use the data supplied by the Web service to update each Person instance. Which two actions should you perform? (Each correct answer
presents part of the solution. Choose two.)
What should you do?
A PerformancePoint Planning Server application has a model named Costs.
You review the properties of the Costs model. You discover that the value of the Current Period property is the previous calendar year. You need to change the value of the Current Period property to the current year. What should you do?
Which two actions should you perform?
You create an ASP.NET Web application by using the .NET Framework 3.5. The application contains a Web form that invokes a Web service. You need to ensure that the page will render successfully if any of the calls time out. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
Which two actions should you recommend?
You are an enterprise application developer. You create a component that generates medical documents. Your component is used by multiple document management systems. Users generate documents throughout the entire day and most documents are generated during business hours. You notice that user load is increasing and performance is degrading. You need to identify sections of code on which to focus performance tuning efforts. Which two actions should you recommend? (Each correct answer presents part of the solution. Choose two.)
What should you do?
You are configuring dimensions. You add a shared Product dimension to the root model site. You add dimension members for each product type to the shared Product dimension.
A subsite uses the shared Product dimension. You create a model in the subsite. You need to ensure that the subsite tracks only product type shoes. What should you do?