PrepAway - Latest Free Exam Questions & Answers

Author: seenagape

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 should you recommend?

You create Web-based client applications.

You are designing a database that must meet the following requirements:

Store data about people in the People table and data about the companies they work for in the Companies table.
Track an unlimited number of companies for a person.
Track an unlimited number of persons who worked at each company. You decide to create a one-to-many link from the People table to the Companies table. You need to evaluate whether the database is designed effectively and make a recommendation, if required. What should you recommend?

Which XML element should you add to line 3?

You need to create a Business Data Catalog Application Definition File that contains an association between the department entity and an employee entity. You add the following code to the Application Definition File:

01: <Associations>
02: <Association AssociationMethodEntityName=”Department” AssociationMethdName = “GetEmployeesInDepartment” AssociationMethodReturnParameterName = “Employees” Name = “DepartmentToEmployee” IsCached = “True”>
03: …
04: </Association>
05: </Associations>

Which XML element should you add to line 3?

Which two actions should you perform?

You create Microsoft Windows-based applications. You are creating a sales management application. The application does not use message queuing technology. The logical datacenter diagram for the current solution is displayed in the exhibit. (Refer to the Exhibit.) Before deploying the application, you verify the list of operational requirements. You decide to meet the following operational requirements: Access to the data must be available even if a database server or a Web server is offline.Access to the database must resume automatically. You need to decide how to implement the solution. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

Which code segment should you insert?

You create Web-based applications. You are creating an Internet banking application. The application will be used by bank account holders.

You are creating a method to withdraw money from an account. The method must change the account balance according to one of the following rules:

If the amount that is being withdrawn is less than or equal to the account balance, then subtract the amount from the balance.
If the amount that is being withdrawn is greater than the account balance by up to 500 dollars, then subtract the amount and a 35-dollar fee from the balance.
If the amount that is being withdrawn is greater than the account balance by more than 500 dollars, then generate an error.

You are translating the specification given here into pseudo code. You start by writing the following code.

Method
public void Withdraw
Input parameters
decimal amount
Class field
decimal balance
Pseudo code
//your pseudo code
You need to insert the correct pseudo code. Which code segment should you insert?