What should you conclude?
You create Microsoft Windows-based applications. You are creating a component that will encapsulate a data source. Dozens of applications will use the component.
The component must meet the following design requirements:
1.The component must be able to be modified within a Rapid Application Development environment.
2.The component must be without a user interface.
You propose to derive the component from the System.Windows.Forms.Control class and to implement the IComponent interface. You need to decide whether the component will meet the requirements. What should you conclude?
Which graphic output format should you use?
You need to use Office Visio 2007 to publish a Web page that meets the following requirements:
Users must be able to search for shape data.
Users must be able to pan and zoom the drawing without any pixilation.
Which graphic output format should you use?
What should you recommend?
You create Web-based client applications. You are creating an Internet banking application. Bank account holders will use this application. The application uses a set of Web services to retrieve account information. One of these Web services is used to retrieve a list of transactions. This Web service returns the list as an XML document.
The application must meet the following requirements:
Data from the XML document has to be retrieved, formatted, and displayed in the user interface. Any changes to the way the data is formatted and to the amount of data displayed should not require the code to be recompiled.
The current design of the application specifies that the XML document will be accessed through an XMLDocument object, and XPath expressions will be used to extract portions of the document to populate controls on a Web form. You need to evaluate the current design of the application and make recommendation for changes, if required. What should you recommend?
Which code fragment should you insert at line 03?
You are creating a Virtual Earth 6.0 application. The Web pages of the application contain a header section, a body section, and a map control section.
The body section of the Web pages contains the following code fragment. (Line numbers are included for reference only.)
01 <div id=’Header’ style=”width:400px;
02 height:100px; background-color: red;”></div>
03 …
04 <div id=’Controls’ style=”width:400px;”>
05 <p align=”center”>Search text:
06 <input type=’text’ id=’Where’ />
07 <input type=’button’ id=’Search’ value=’Search’
08 onclick=”Find();” />
09 </p>
10 </div>
You need to ensure that the maps contained on the Web pages fit correctly between the header section and the map control section.
Which code fragment should you insert at line 03?
Which authentication method should you specify in the application definition file?
You plan to create an application definition file for a SQL Server database. You need to distribute the credentials used to connect the SharePoint site that are also used to connect to the SQL Server database.
Which authentication method should you specify in the application definition file?
Which risk should you identify?
You create Microsoft Windows-based applications. You are creating an application to manage projects. Your current customers use Microsoft Windows 2000, Windows XP Professional, and Windows Server 2003, in workgroup and domain settings.
The application must meet the following requirements:
Identify the user for workflow functionality.
Store data in a central location on your companys network.
Permit data to be stored locally for offline access.
Your application relies on Windows domainCbased authentication to identify the user without logging on to the application itself. You decide to use Microsoft SQL Server 2005 as the database engine and save the data locally in XML format for offline access. You need to identify the risks that are related to your design. Which risk should you identify?
What are two possible ways to achieve this goal?
You plan to distribute an Office Visio 2007 diagram to users who use different operating systems. You need to convert the diagram into a format that opens on any operating system. What are two possible ways to achieve this goal? (Each correct answer presents a complete solution.
Choose two.)
What should you do?
You create Web-based client applications. You are creating an application for a Web site. The Web site uses the application to simulate mortgage loans. Your application calculates the monthly payment for loans. The monthly payment is based on the number of payments, rate, and the amount of loan. You need to create the unit testing strategy for the application. What should you do?
Which code fragment should you use?
You are creating a Web application by using the Virtual Earth 6.0 map control.
A Web page of the application provides links to a number of pre-defined locations. The application must meet the following requirements:
The links can be shared.
The links are encoded with map properties.
Users can copy the links to the Windows clipboard.
You need to write code to meet the requirements.
Which code fragment should you use?
Which code segment should you use?
You are creating a site on a SharePoint 2007 server. You write the following code segment:
01: Public Function GetUserProperties() As String
02: Dim usersWithNoTitles as String = New String(“”)
03: Dim site as SPSite = new SPSite(“http://sitename”)
04: Try
05: Dim web as SPWeb = site.OpenWeb
06: Try
07: Dim profMan as UserProfileManager = New UserProfileManager
08: …
09: Finally
10: CType(web.iDisposable).Disposable()
11: End Try
12: Finally
13: CType(site.iDisposable).Disposable()
14: End Try
15: Return usersWithNoTitles
16: End Function
You need to display a list of users in the site who have blank titles.
Which code segment should you use?