What should you do?
You create a PerformancePoint Add-in for Excel report. Your model has a dimension named Products. The Products dimension contains two member sets named Color and ProductCategory. You add a matrix to the report. The matrix displays the number of products in the ProductCategory member set. You need to ensure that the matrix displays the number of products in the ProductCategory member set only if the Color member has a value of either Red or Blue. What should you do?
What should you do?
You create an ASP.NET application by using the .NET Framework 3.5.
You plan to implement a mechanism to monitor a service level agreement (SLA) compliance in the application.
You need to identify a method to enable accurate calculation of the time that all requests take to
process.
What should you do?
What should you do?
An application calls a Web method asynchronously by using the following code.
(Line numbers are included for reference only.)
01 void ProcessData() {
02 ProcessingService serviceProxy = new ProcessingService();
03 IAsyncResult asyncResult = null;
04 asyncResult = serviceProxy.BeginProcess(data, null, null);
05 while (!asyncResult.IsCompleted) {
06 Thread.Sleep(1000);
07 }
08
09 serviceProxy.EndProcess(asyncResult);
10 }
You need to ensure that the application can process and log any exceptions raised by the Web method.
What should you do?
What should you do first?
You deploy a new currency rule that is based on the Default Currency rules template. You discover that the Execute Rule Set or Rule option is not available for the currency rule.
You need to run the currency rule. 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 accesses a Windows Communication Foundation (WCF) service.
You plan to debug the application.
You need to ensure that you can step into the WCF service and debug the application.
What should you do?
What should you do?
You write a .NET Framework remoting application that broadcasts messages to client computers through a central server by raising events on the client computers.
Message details are contained in an argument in the event delegate, as shown in the following code segment.
public delegate void MessageArrivedHandler(BroadcastEventArgs args);
public class BroadcastEventArgs
{
public string Message;
public string Sender;
public DateTime TimeSent;
}
You need to ensure that the client computer can access the message details contained in the event argument.
Your solution cannot change the common language runtime (CLR) security restrictions.
What should you do?
What are two possible ways to achieve this goal?
You perform a new, clean installation of PerformancePoint Planning Server on a server named CA-PPS1. The CA-PPS1 server is a member of a domain named Contoso.
You open PerformancePoint Planning Administration Console and create a new application. You select the application and try to assign domain users to the Modeler role by using the Contoso\<user name> name format.
You are unable to find any of the domain user accounts in Planning Administration Console.
You need to ensure that the domain users have the Modeler role permissions for the application.
What are two possible ways to achieve this goal? (Each correct answer presents a complete solution.
Choose two.)
What should you do?
You are creating an ASP.NET application by using the .NET Framework 3.5.
Based on the user name and the time of the day, you are required to provide the following features:
– Branding of images
– Control colors
– Page layouts
You need to provide these features on each page of the application when the page requests are made.
What should you do?
What should you do?
A .NET Framework remoting server hosts a class library that contains the following class.
public class SimpleMathClass : MarshalByRefObject
{
public int LogData(DataRow dr)
{
//Lengthy database calls …
}
}
Users of a Windows-based client application report that the application often becomes nonresponsive.
You discover that the application makes calls to the LogData method that take several seconds to return.
The return value is required to generate reports in the client application.
You need to ensure that calls to the LogData method can be processed without making the client application nonresponsive.
What should you do?
Which mode should you change the state of the application to?
You create a new Microsoft Office PerformancePoint Server 2007 application. You need to ensure that only users assigned to the Modeler role can connect to the application. Which mode should you change the state of the application to?