What should you do first?
You create a new application in PerformancePoint Planning Server. You create a calendar for the application. Your manager wants another calendar for the manufacturing department. The department uses different fiscal year dates. You need to create the new calendar. What should you do first?
What should you do?
You are creating an ASP.NET application by using the .NET Framework 3.5.
The individual pages of the application will be frequently updated.
You need to minimize the application startup time after page modifications.
What should you do?
What should you do?
You are writing an application that calls a Web service.
The application must call the Web service asynchronously and also perform a small amount of processing while the Web service is running.
The return value from the Web service is required for additional processing.
You need to ensure that the application can call the Web service asynchronously and also process the return value.
Your solution must keep processor cycles to a minimum.
What should you do?
What should you do first?
You create a new dimension named HR in a PerformancePoint Planning Server application. You need to create an additional member property for the HR dimension. You also need to ensure that the additional member property is populated from a predefined dimension named Entity. What should you do first?
Which two actions should you perform?
You are creating an ASP.NET application by using the .NET Framework 3.5.
You deploy the application on multiple servers in the same domain. All servers belong to the same Web farm.
You need to ensure that users have to log on only once to gain access to all the servers.
Which two actions should you perform? (Each correct answer presents part of the solution.
Choose two.)
What should you do?
A class library named MathLib contains the following code.
public class MathClass : MarshalByRefObject
{
public decimal DoHugeCalculation(int iterations)
{
decimal result;
//Some very lengthy calculations …
return result;
}
}
The MathLib class is hosted in a .NET Framework remoting server application.
A Windows application project running on a client computer contains the following class.
public class MathClient
{
public void ProcessHugeCalculation(int iterations)
{
MathClass cm = new MathClass();
decimal decRes = cm.DoHugeCalculation(iterations);
//process the result …
}
}
The MathClient class must call the MathClass class asynchronously by using remoting.
A callback must be implemented to meet this requirement.
You need to complete the implementation of the MathClient class.
What should you do?
What should you do?
Your scorecard displays a set of key performance indicators (KPIs) in rows and displays values for Actuals and Targets in columns. You need to display the KPIs in columns and display the values for Actuals and Targets in rows. What should you do?
What should you do?
You are creating an ASP.NET application by using the .NET Framework 3.5.
The application has performance problems. You plan to collect sample timing information for each page.
You need to ensure that while collecting the information, the following requirements are met:
– The application remains online.
– The trace output is not visible to end users.
– The trace output contains the rendering time for all controls on all the pages.
What should you do?
What should you conclude?
You are an enterprise application developer. Your company has a Web-based application that runs on a single Web server. Session information is currently being stored by using the default session mode. You are redesigning the application to run in a Web farm. You must ensure that the failure of any single server does not make session information unavailable. A developer in your team recommends using the default session mode on each server in the Web farm. You need to evaluate this recommendation. What should you conclude?
What should you do?
Your company has three different sales regions. The sales scorecard has a key performance indicator (KPI) for each sales region. You need to ensure that each KPI displays data from the corresponding sales region only. What should you do?