PrepAway - Latest Free Exam Questions & Answers

Author: seenagape

What conclusion can you draw?

You work as the Enterprise application developer at Domain.com. The Domain.com network consists of a single Active Directory domain named Domain.com. All servers in the domain run Windows Server 2003. Your responsibilities at Domain.com include the design and development of application frameworks. Domain.com operates as a financial institution. You are currently developing a Microsoft Windows Forms application for Domain.com that is meant to allow bank tellers to manage account transactions for the Domain.com customers. In the United States of America is it government policy that all transactions to the value of $10 000 or greater must be reported. Domain.com need to comply with this policy. This policy also states that the government should be informed as to who made the large transaction. The logical design suggests that in the event of a teller managing a transaction for a customer that is $ 10,000 or greater in value logging of the following information should occur:
1. Date and time
2. Customer account number
3. Transaction amount
4. Transaction type

When subjected to government audit, Domain.com needs to have peace of mind that they are in compliance with the government policies. Thus you now need to decide whether or not the design meets the requirements for compliance.

What conclusion can you draw?

which line of code prevents the boot loader from running. What should you do?

You have a target hardware platform that has a display, a keyboard, a serial port, and an LED. The target hardware does not support Extended Debugging Interface (eXDI). The development team modifies the boot loader source code. You discover that the boot loader fails to run. You need to identify which line of code prevents the boot loader from running. What should you do?

Which two actions should you perform?

You are creating an ASP.NET application by using the .NET Framework 3.5.

The application will be accessed by Internet users. You plan to enable users to authenticate from the client-side script.

You add the following code fragment in the Web.config file of the application.

<system.web.extensions>
<scripting>
<webServices>
<authenticationService enabled=”true” />
</webServices>
</scripting>
</system.web.extensions>

You need to configure the application to ensure user credentials are validated against Active Directory by using the client-side script.

Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

should you do?

You create a Microsoft ASP.NET application by using the Microsoft .NET Framework
version 3.5. The application contains two Web pages named OrderDetails.aspx and
OrderError.htm.If the application throws unhandled errors in the OrderDetails.aspx Web
page, a stack trace is displayed to remote users.You need to ensure that the OrderError.htm
Web page is displayed for unhandled errors only in the OrderDetails.aspx Web page. What
should you do?

Which two actions should you perform?

You create an application by using Microsoft Visual Studio .NET 2008 and the .NET Framework 3.5. The application contains the following components:

A business tier component
A data access tier component
A Microsoft SQL Server database
The database stores sales order data. You plan to design a validation strategy that meets the following requirements:

For each order, the ship date must be greater than the order date. Validation errors must be detected as early as possible. Validation must be enforced regardless of which applications or application components modify the order data.

You need to ensure that the validation strategy meets the specified requirements. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

What should you do?

You work as the Enterprise application developer at Domain.com. The Domain.com network consists of a single Active Directory domain named Domain.com. All servers in the domain run Windows Server 2003. Your responsibilities at Domain.com include the design and development of application frameworks.
You are currently developing a Microsoft Windows Forms monitoring application for Domain.com. This application is destined to read data in a Microsoft SQL Server 2005 database and display it graphically on a form. All Domain.com users need to be able to:
1. choose the refresh rate for displaying data
2. choose an interval in multiples of one second
To this end you need to reuse a component to meet these requirements without requiring excessive coding.

What should you do?

What should you do?

You are maintaining an ASP.NET application by using the .NET Framework 3.5.
The application uses Forms authentication.
Security testing of the application reveals that users can access the sessions of other users on different computers.
You need to configure the application to eliminate the vulnerability.

What should you do?

Which line of code should you insert at line 07?

You create an application by using the Microsoft .NET Framework 3.5 and Microsoft
ADO.NET. The application connects to a Microsoft SQL Server 2005 database.You write
the following code segment in the exception handler of the application. (Line numbers are
included for reference only.)
01 private string ShowSQLErrors(SqlException ex){
02 StringBuilder sb = new StringBuilder();
03 foreach (SqlError err in ex.Errors) {
04 sb.Append(“Message: “);
05 sb.Append(err.Number.ToString());
06 sb.Append(“, Level: “);
07
08 sb.Append(“, State: “);
09 sb.Append(err.State.ToString());
10 sb.Append(“, Source: “);
11 sb.AppendLine(err.Source.ToString());
12 sb.AppendLine(err.Message.ToString());
13 sb.AppendLine();
14 }
15 return sb.ToString();
16 }
You need to ensure that the original severity level of the error is included in the error
message for each SQL error that occurs.Which line of code should you insert at line 07?

Which local data store should you use?

You create an application by using Microsoft Visual Studio .NET 2008 and the .NET Framework 3.5. The application must use a local data store to support those applications that connect occasionally. You need to ensure that the local data store meets the following requirements:

It does not create additional services on client computers.
It provides synchronization capabilities to other data stores.

Which local data store should you use?