Which strategy should you use?
You create Web-based client applications. You are creating a content management system (CMS). You intend to sell CMS to your customers. It is important that customers customize the appearance and behavior of the CMS installation because the system will be used for external Web sites. However, your customers are not programmers. The customers will not be able to modify complicated source code to customize the appearance and behavior of their Web sites. You need to create the system in such a way that customers can modify the appearance and behavior of their Web
sites by editing the minimum number of files, ideally one or two. Which strategy should you use?
What should you do?
You need to display the contents of a SharePoint list named “Assets” in a Microsoft Office Excel spreadsheet and then publish the spreadsheet to Excel Services.
What should you do?
Which two aspects should you consider modifying?
You create Microsoft Windows-based applications. You are creating a sales management application for your company. The application will be used by 250 users on the companys
network. In the future, the company will be expanding the user base to include at least 1,000 more users. The application will be stored locally on every computer. The application uses a set of assemblies that are installed in the global assembly cache for business rules. The application retrieves data from a Microsoft SQL Server 2005 database by using a set of methods from a Web service. The SQL Server 2005 database is hosted on a local server. The Web service is maintained at a local IIS 6.0 Server. You need to evaluate which aspects of the physical design can be modified to accommodate more users. Which two aspects should you consider modifying? (Each answer presents part of the solution. Choose two.)
What should you conclude?
You create Web-based client applications. You create an application that is used as a portal. The portal uses a set of custom controls that expose different functionalities.
The set of custom controls includes one control each for the following three tasks:
Track sales
Track inventory
Permit access to the corporate e-mail of the company
The portal must permit users to select the controls that they need to display on the basis of a predefined list.
The design team proposes the following steps to meet the requirement:
Create the custom controls as Web parts.
Create a Web part zone page that has two Web part controls and a catalog part control.
Add the sales Web part control to the Web part zone.
You need to evaluate whether the solution meets the requirements. What should you conclude?
Which two steps should you perform?
You create a search center site for your Microsoft Office SharePoint Server 2007 portal. You need to display a new column named CompletionDate on a Search Core Results Web Part. Which two steps should you perform? (Each correct answer presents part of the solution. Choose two.)
Which four requirements does the proposed solution meet?
You create Microsoft Windows-based applications. You are creating an application to manage projects. Your company network consists of a single Microsoft Windows Server 2003 Active Directory domain. All servers in the domain run Microsoft Windows Server 2003. All workstations run Microsoft Windows XP Professional.
You are provided with the following requirements:
1. Identify the user for workflow functionality.
2. Store data in a central location to help users access the data from anywhere on the network.
3. Permit data to be stored locally for offline access.
4. Permit access to the central data storage so that future applications can reuse the data.
5. Store application settings locally.
6. Make network communication as secure as possible.
You create an application that relies on Windows domain-based authentication and authorization to identify the user without logging on to the application. You also decide to use Microsoft SQL Server 2005 as the database engine and save the data locally as XML for offline access. You need to validate that the proposed solution meets the requirements. Which four requirements does the proposed solution meet? (Each answer presents part of the solution. Choose four.)
Which line of code should replace the code on line 09 of the unit test?
You create Web-based applications. You are creating an Internet banking application. You write the following lines of code to represent a method in your application. (Line numbers are included for reference only.)
01 public void Transfer(decimal amount, BankAccount account) 02 {
03 if (!(amount > 0))
04 throw new Exception(“Invalid deposit amount!”);
05 else
06 {
07 this.Withdraw(amount);
08 account.Deposit(amount);
09 }
10 }
You use the Microsoft Visual Studio 2005 test feature to automatically generate the following unit test.
(Line numbers are included for reference only.)
01 [TestMethod()]
02 public void TransferTest()
03 {
05 BankAccount target = new BankAccount();
06 BankAccount transferTo = new BankAccount();
07 target.Deposit(500);
08 target.Transfer(100,transferTo);
09 Assert.Inconclusive(“A method that does not return a value cannot be verified.”); 10 }
You need to change the test method to return a conclusive result. Which line of code should replace the code on line 09 of the unit test?
What should you do?
You company uses an ASP.Net web site. You create a Microsoft Office InfoPath form named myForm. You are created a custom control that is derived from the XMLFormView class. The custom control will display myForm within the ASP.Net page on the web site. You need to ensure that myForm will be displayed within the ASP.Net page on the web site.
What should you do?
What should you conclude?
You create Microsoft Windows-based applications. You are creating an application that is used to run statistical sales models. Users run this application from 09:00 to 17:00 hours every day to run their analysis. The application requirements state that the application must not consume more than 20 percent of the processor time. The network administrator in your company sends you a graph displaying the processor usage for the application on a specific machine. The graph shows the processor usage for an entire day. The graph referenced by the network administrator is shown in the exhibit. (Refer to the Exhibit.) You need to evaluate the design to find whether the application performance is within the requirements. What should you conclude?
What change should you suggest?
You create Web-based client applications. You are reviewing a Web application page that populates a list of all employees of your company. You analyze code and find that the Web application page does not prevent exceptions from traveling to the browser. You need to ensure that the Web application page intercepts exceptions and presents an error message to the browser. What change should you suggest?