2014年4月30日星期三

Microsoft 070-561, de formation et d'essai

Vous pouvez s'exercer en Internet avec le démo gratuit. Vous allez découvrir que la Q&A de Pass4Test est laquelle le plus complète. C'est ce que vous voulez.

Si vous êtes intéressé par l'outil formation Microsoft 070-561 étudié par Pass4Test, vous pouvez télécharger tout d'abord le démo. Le service de la mise à jour gratuite pendant un an est aussi offert pour vous.

Le succès n'est pas loin de vous si vous choisissez Pass4Test. Vous allez obtenir le Certificat de Microsoft 070-561 très tôt. Pass4Test peut vous permettre à réussir 100% le test Microsoft 070-561, de plus, un an de service en ligne après vendre est aussi gratuit pour vous.

La solution offerte par Pass4Test comprenant un test simulation bien proche de test réel Microsoft 070-561 peut vous assurer à réussir 100% le test Microsoft 070-561. D'ailleur, le service de la mise à jour gratuite est aussi pour vous. Maintenant, vous pouvez télécharger le démo gratuit pour prendre un essai.

Le test Certification Microsoft 070-561 est une chance précieuse à augmenter vos connaissances de technologie informatique dans l'industrie IT. Il attire beaucoup de professionls à participer ce test. Pass4Test peut vous offrir les outils de formation particuliers à propos de test Microsoft 070-561. Vous réaliserez plus tôt votre rêve avec la Q&A écrite par l'équipe professionnelle de Pass4Test. Pass4Test se contribue à vous donner un coup de main pour réussir le test Microsoft 070-561.

Code d'Examen: 070-561
Nom d'Examen: Microsoft (TS: MS .NET Framework 3.5, ADO.NET Application Development)
Questions et réponses: 170 Q&As

070-561 Démo gratuit à télécharger: http://www.pass4test.fr/070-561.html

NO.1 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. (Line numbers are included for reference only.)
01 Using connection As New SqlConnection(connectionString)
02 Dim cmd As New SqlCommand(queryString, connection)
03 connection.Open()
04
05 While sdrdr.Read()
06 ' use the data in the reader
07 End While
08 End Using
You need to ensure that the memory is used efficiently when retrieving BLOBs from the database.
Which code segment should you insert at line 04?
A. Dim sdrdr As SqlDataReader = _ cmd.ExecuteReader()
B. Dim sdrdr As SqlDataReader = _ cmd.ExecuteReader(CommandBehavior.[Default])
C. Dim sdrdr As SqlDataReader = _ cmd.ExecuteReader(CommandBehavior.SchemaOnly)
D. Dim sdrdr As SqlDataReader = _ cmd.ExecuteReader(CommandBehavior.SequentialAccess)
Answer: D

Microsoft examen   070-561   070-561 examen   certification 070-561   070-561

NO.2 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.
string query = "Select EmpNo, EmpName from dbo.Table_1;
select Name,Age from dbo.Table_2";
SqlCommand command = new SqlCommand(query, connection);
SqlDataReader reader = command.ExecuteReader();
You need to ensure that the application reads all the rows returned by the code segment.
Which code segment should you use?
A. while (reader.NextResult())
{
Console.WriteLine(String.Format("{0}, {1}",reader[0], reader[1]));
reader.Read();
}
B. while (reader.Read())
{
Console.WriteLine(String.Format("{0}, {1}",reader[0], reader[1]));
reader.NextResult();
}
C. while (reader.Read())
{
Console.WriteLine(String.Format("{0}, {1}",reader[0], reader[1]));
}
reader.NextResult();
while (reader.Read())
{
Console.WriteLine(String.Format("{0}, {1}",reader[0], reader[1]));
}
D. while (reader.NextResult())
{
Console.WriteLine(String.Format("{0}, {1}",reader[0], reader[1]));
}
reader.Read();
while (reader.NextResult())
{
Console.WriteLine(String.Format("{0}, {1}",reader[0], reader[1]));
}
Answer: C

Microsoft   070-561 examen   070-561 examen

NO.3 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.
Dim queryString As String = "Select Name, Age from dbo.Table_1"
Dim command As New _SqlCommand(queryString, DirectCast(connection, SqlConnection))
You need to get the value that is contained in the first column of the first row of the result set returned by
the query.
Which code segment should you use?
A. Dim value As Object = command.ExecuteScalar()
Dim requiredValue As String = value.ToString()
B. Dim value As Integer = command.ExecuteNonQuery()
Dim requiredValue As String = value.ToString()
C. Dim value As SqlDataReader = _command.ExecuteReader(CommandBehavior.SingleRow)
Dim requiredValue As String = value(0).ToString()
D. Dim value As SqlDataReader = _command.ExecuteReader(CommandBehavior.SingleRow)
Dim requiredValue As String = value(1).ToString()
Answer: A

Microsoft   070-561   certification 070-561

NO.4 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 need to separate the security-related exceptions from the other exceptions for database operations at
run time.
Which code segment should you use?
A. catch (System.Security.SecurityException ex)
{
//Handle all database security related exceptions.
}
B. catch (System.Data.SqlClient.SqlException ex)
{
for (int i = 0; i < ex.Errors.Count; i++){
if (ex.Errors[i].Class.ToString() == "14") {
//Handle all database security related exceptions.
}
else{
//Handle other exceptions
}
}
}
C. catch (System.Data.SqlClient.SqlException ex)
{
for (int i = 0; i < ex.Errors.Count; i++){
if (ex.Errors[i].Number == 14){
//Handle all database security related exceptions.
}
else{
//Handle other exceptions
}
}
}
D. catch (System.Data.SqlClient.SqlException ex)
{
for (int i = 0; i < ex.Errors.Count; i++){
if (ex.Errors[i].Message.Contains("Security")){
//Handle all database security related exceptions.
}
else{
//Handle other exceptions
}
}
}
Answer: B

Microsoft examen   070-561   certification 070-561   070-561   070-561

NO.5 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.
The application throws an exception when the SQL Connection object is used.
You need to handle the exception.
Which code segment should you use?
A. try
{
if(null!=conn)
conn.Close();
// code for the query
}
catch (Exception ex)
{
// handle exception
}
finally
{
if(null==conn)
conn.Open();
}
B. try
{
conn.Close();
// code for the query
}
catch (Exception ex)
{
// handle exception
}
finally
{
if(null!=conn)
conn.Open();
}
C. try
{
conn.Open();
// code for the query
}
catch (Exception ex)
{
// handle exception
}
finally
{
if(null!=conn)
conn.Close();
}
D. try
{
conn.Open();
// code for the query
}
catch (Exception ex)
{
// handle exception
}
finally
{
if(null==conn)
conn.Close();
}
Answer: C

certification Microsoft   070-561 examen   070-561   070-561 examen   070-561

NO.6 You create an application by using the Microsoft .NET Framework 3.5 and Microsoft ADO.NET.
The application contains a SqlDataAdapter object named daOrder. The SelectCommand property of the
daOrder object is set.
You write the following code segment. (Line numbers are included for reference only.)
01 private void ModifyDataAdapter() {
02
03 }
You need to ensure that the daOrder object can also handle updates.
Which code segment should you insert at line 02?
A. SqlCommandBuilder cb = new SqlCommandBuilder(daOrder);
cb.RefreshSchema();
B. SqlCommandBuilder cb = new SqlCommandBuilder(daOrder);
cb.SetAllValues = true;
C. SqlCommandBuilder cb = new SqlCommandBuilder(daOrder);
daOrder.DeleteCommand = cb.GetDeleteCommand();
daOrder.InsertCommand = cb.GetInsertCommand();
daOrder.UpdateCommand = cb.GetUpdateCommand();
D. SqlCommandBuilder cb = new SqlCommandBuilder(daOrder);
cb.RefreshSchema();
cb.GetDeleteCommand();
cb.GetInsertCommand();
cb.GetUpdateCommand();
Answer: C

Microsoft   070-561   070-561 examen   070-561 examen   certification 070-561

NO.7 You create an application by using the Microsoft .NET Framework 3.5 and Microsoft ADO.NET.
The application has a DataTable object named OrderDetailTable. The object has the following columns:
ID
OrderID
ProductID
Quantity
LineTotal
The OrderDetailTable object is populated with data provided by a business partner. Some of the records
contain a null value in the LineTotal field and 0 in the Quantity field.
You write the following code segment. (Line numbers are included for reference only.)
01 DataColumn col = new DataColumn("UnitPrice", typeof(decimal));
02
03 OrderDetailTable.Columns.Add(col);
You need to add a DataColumn named UnitPrice to the OrderDetailTable object.
Which line of code should you insert at line 02?
A. col.Expression = "LineTotal/Quantity";
B. col.Expression = "LineTotal/ISNULL(Quantity, 1)";
C. col.Expression = "LineTotal.Value/ISNULL(Quantity.Value,1)";
D. col.Expression = "iif(Quantity > 0, LineTotal/Quantity, 0)";
Answer: D

Microsoft   070-561 examen   070-561 examen

NO.8 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.
The application throws an exception when the SQL Connection object is used.
You need to handle the exception.
Which code segment should you use?
A. Try
If conn IsNot Nothing Then
conn.Close()
' code for the query
End If
Catch ex As Exception
' handle exception
Finally
If conn Is Nothing Then
conn.Open()
End If
End Try
B. Try
' code for the query
conn.Close()
Catch ex As Exception
' handle exception
Finally
If conn IsNot Nothing Then
conn.Open()
End If
End Try
C. Try
' code for the query
conn.Open()
Catch ex As Exception
' handle exception
Finally
If conn IsNot Nothing Then
conn.Close()
End If
End Try
D. Try
' code for the query
conn.Open()
Catch ex As Exception
' handle exception
Finally
If conn Is Nothing Then
conn.Close()
End If
End Try
Answer: C

certification Microsoft   070-561 examen   certification 070-561   070-561   070-561

NO.9 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.
The application analyzes large amounts of transaction data that are stored in a different database.
You write the following code segment. (Line numbers are included for reference only.)
01 using (SqlConnection connection = new
SqlConnection(sourceConnectionString))
02 using (SqlConnection connection2 = new
SqlConnection(destinationConnectionString))
03 using (SqlCommand command = new SqlCommand())
04 {
05 connection.Open();
06 connection2.Open();
07 using (SqlDataReader reader = command.ExecuteReader())
08 {
09 using (SqlBulkCopy bulkCopy = new
SqlBulkCopy(connection2))
10 {
11
12 }
13 }
14 }
You need to copy the transaction data to the database of the application.
Which code segment should you insert at line 11?
A. reader.Read()
bulkCopy.WriteToServer(reader);
B. bulkCopy.DestinationTableName = "Transactions";
bulkCopy.WriteToServer(reader);
C. bulkCopy.DestinationTableName = "Transactions";
bulkCopy.SqlRowsCopied += new
SqlRowsCopiedEventHandler(bulkCopy_SqlRowsCopied);
D. while (reader.Read())
{
bulkCopy.WriteToServer(reader);
}
Answer: B

certification Microsoft   070-561   070-561 examen   070-561

NO.10 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 need to separate the security-related exceptions from the other exceptions for database operations at
run time.
Which code segment should you use?
A. Catch ex As System.Security.SecurityException
'Handle all database security related exceptions.
End Try
B. Catch ex As System.Data.SqlClient.SqlException
For i As Integer = 0 To ex.Errors.Count - 1
If ex.Errors(i).[Class].ToString() = "14" Then
'Handle all database security related exceptions.
Else
'Handle other exceptions
End If
Next
End Try
C. Catch ex As System.Data.SqlClient.SqlException
For i As Integer = 0 To ex.Errors.Count - 1
If ex.Errors(i).Number = 14 Then
'Handle all database security related exceptions.
Else
'Handle other exceptions
End If
Next
End Try
D. Catch ex As System.Data.SqlClient.SqlException
For i As Integer = 0 To ex.Errors.Count - 1
If ex.Errors(i).Message.Contains("Security") Then
'Handle all database security related exceptions.
Else
'Handle other exceptions
End If
Next
End Try
Answer: B

certification Microsoft   070-561 examen   certification 070-561   070-561   certification 070-561

NO.11 You create an application by using the Microsoft .NET Framework 3.5 and Microsoft ADO.NET.
The application contains a TextBox control named txtProductID. The application will return a list of active
products that have the ProductID field equal to the txtProductID.Text property.
You write the following code segment. (Line numbers are included for reference only.)
01 private DataSet GetProducts(SqlConnection cn) {
02 SqlCommand cmd = new SqlCommand();
03 cmd.Connection = cn;
04 SqlDataAdapter da = new SqlDataAdapter(cmd);
05 DataSet ds = new DataSet();
06
07 da.Fill(ds);
08 return ds;
09 }
You need to populate the DataSet object with product records while avoiding possible SQL injection
attacks.
Which code segment should you insert at line 06?
A. cmd.CommandText = string.Format("sp_sqlexec 'SELECT ProductID,
Name FROM Product WHERE ProductID={0} AND IsActive=1'", txtProductID.Text);
B. cmd.CommandText = string.Format("SELECT ProductID, Name FROM
Product WHERE ProductID={0} AND IsActive=1", txtProductID.Text);
cmd.Prepare();
C. cmd.CommandText = string.Format("SELECT ProductID, Name FROM
Product WHERE ProductID={0} AND IsActive=1", txtProductID.Text);
cmd.CommandType = CommandType.TableDirect;
D. cmd.CommandText = "SELECT ProductID, Name FROM Product WHERE
ProductID=@productID AND IsActive=1";
cmd.Parameters.AddWithValue("@productID", txtProductID.Text);
Answer: D

certification Microsoft   certification 070-561   certification 070-561   certification 070-561

NO.12 You create an application by using the Microsoft .NET Framework 3.5 and Microsoft ADO.NET.
The application contains a DataSet object named OrderDS that has the Order and OrderDetail tables as
shown in the following exhibit.
You write the following code segment. (Line numbers are included for reference only.)
01 private void GetOrders(SqlDataConnection cn) {
02 SqlCommand cmd = cn.CreateCommand();
03 cmd.CommandText = "Select * from [Order];
Select * from [OrderDetail];";
04 SqlDataAdapter da = new SqlDataAdapter(cmd);
05
06 }
You need to ensure that the Order and the OrderDetail tables are populated.
Which code segment should you insert at line 05?
A. da.Fill(OrderDS);
B. da.Fill(OrderDS.Order);
da.Fill(OrderDS.OrderDetail);
C. da.TableMappings.AddRange(new DataTableMapping[] {
new DataTableMapping("Table", "Order"),
new DataTableMapping("Table1", "OrderDetail")});
da.Fill(OrderDS);
D. DataTableMapping mapOrder = new DataTableMapping();
mapOrder.DataSetTable = "Order";
DataTableMapping mapOrderDetail = new DataTableMapping();
mapOrder.DataSetTable = "OrderDetail";
da.TableMappings.AddRange(new DataTableMapping[]
{ mapOrder, mapOrderDetail });
Da.Fill(OrderDS);
Answer: C

Microsoft examen   070-561   070-561

NO.13 You create an application by using the Microsoft .NET Framework 3.5 and Microsoft ADO.NET.
The application contains a DataSet object named orderDS. The object contains a table named Order as
shown in the following exhibit.
The application uses a SqlDataAdapter object named daOrder to populate the Order table.
You write the following code segment. (Line numbers are included for reference only.)
01 Private Sub FillOrderTable(ByVal pageIndex As Integer)
02 Dim pageSize As Integer = 5
03
04 End Sub
You need to fill the Order table with the next set of 5 records for each increase in the pageIndex value.
Which code segment should you insert at line 03?
A. Dim sql As String = "SELECT SalesOrderID, CustomerID, " + _
"OrderDate FROM Sales.SalesOrderHeader"
daOrder.SelectCommand.CommandText = sql
daOrder.Fill(orderDS, pageIndex, pageSize, "Order")
B. Dim startRecord As Integer = (pageIndex - 1) * pageSize
Dim sql As String = "SELECT SalesOrderID, CustomerID, " + _
"OrderDate FROM Sales.SalesOrderHeader"
daOrder.SelectCommand.CommandText = sql
daOrder.Fill(orderDS, startRecord, pageSize, "Order")
C. Dim sql As String = _
String.Format("SELECT TOP {0} SalesOrderID, " + _
"CustomerID, OrderDate FROM Sales.SalesOrderHeader " + _
"WHERE SalesOrderID > {1}", pageSize, pageIndex)
daOrder.SelectCommand.CommandText = sql
daOrder.Fill(orderDS, "Order")
D. Dim startRecord As Integer = (pageIndex - 1) * pageSize
Dim sql As String = _
String.Format("SELECT TOP {0} SalesOrderID, " + _
"CustomerID, OrderDate FROM Sales.SalesOrderHeader " + _
"WHERE SalesOrderID > {1}", pageSize, startRecord)
daOrder.SelectCommand.CommandText = sql
daOrder.Fill(orderDS, "Order")
Answer: B

Microsoft examen   070-561   certification 070-561   070-561 examen

NO.14 You create an application by using the Microsoft .NET Framework 3.5 and Microsoft ADO.NET.
You need to ensure that the application can connect to any type of database.
What should you do?
A. Set the database driver name in the connection string of the application, and then create the
connection object in the following manner.
DbConnection connection = new OdbcConnection(connectionString);
B. Set the database provider name in the connection string of the application, and then create the
connection object in the following manner.
DbConnection connection = new OleDbConnection(connectionString);
C. Create the connection object in the following manner.
DbProviderFactory factory = DbProviderFactories.GetFactory("System.Data.Odbc");
DbConnection connection = factory.CreateConnection();
D. Create the connection object in the following manner.
DbProviderFactory factory = DbProviderFactories.GetFactory(databaseProviderName);
DbConnection connection = factory.CreateConnection();
Answer: D

certification Microsoft   070-561 examen   070-561

NO.15 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.
The connection string of the application is defined in the following manner.
"Server=Prod;Database=WingtipToys;Integrated
Security=SSPI;Asynchronous Processing=true"
The application contains the following code segment. (Line numbers are included for reference only.)
01 Protected Sub UpdateData(ByVal cmd As SqlCommand)
02 cmd.Connection.Open()
03
04 lblResult.Text = "Updating ..."
05 End Sub
The cmd object takes a long time to execute.
You need to ensure that the application continues to execute while cmd is executing.
What should you do?
A. Insert the following code segment at line 03.
cmd.BeginExecuteNonQuery(New AsyncCallback( _
AddressOf UpdateComplete), cmd)
Add the following code segment.
Private Sub UpdateComplete (ByVal ar As IAsyncResult)
Dim count As Integer = CInt(ar.AsyncState)
LogResults(count)
End Sub
B. Insert the following code segment at line 03.
cmd.BeginExecuteNonQuery(New AsyncCallback( _
AddressOf UpdateComplete), cmd)
Add the following code segment.
Private Sub UpdateComplete(ByVal ar As IAsyncResult)
Dim cmd As SqlCommand = DirectCast(ar.AsyncState, SqlCommand)
Dim count As Integer = cmd.EndExecuteNonQuery(ar)
LogResults(count)
End Sub
C. Insert the following code segment at line 03.
AddHandler cmd.StatementCompleted, AddressOf UpdateComplete
cmd.ExecuteNonQuery()
Add the following code segment.
Private Sub UpdateComplete(ByVal sender As Object, _
ByVal e As StatementCompletedEventArgs)
Dim count As Integer = e.RecordCount
LogResults(count)
End Sub
D. Insert the following code segment at line 03.
Dim notification As New _
SqlNotificationRequest("UpdateComplete ", "", 10000)
cmd.Notification = notification
cmd.ExecuteNonQuery()
Add the following code segment.
Private Sub UpdateComplete (ByVal notice As SqlNotificationRequest)
Dim count As Integer = Integer.Parse(notice.UserData)
LogResults(count)
End Sub
Answer: B

Microsoft   070-561   070-561   070-561   070-561

NO.16 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. (Line numbers are included for reference only.)
01 using (SqlConnection connection = new
SqlConnection(connectionString)) {
02 SqlCommand cmd = new SqlCommand(queryString, connection);
03 connection.Open();
04
05 while (sdrdr.Read()){
06 // use the data in the reader
07 }
08 }
You need to ensure that the memory is used efficiently when retrieving BLOBs from the database.
Which code segment should you insert at line 04?
A. SqlDataReader sdrdr = cmd.ExecuteReader();
B. SqlDataReader sdrdr = cmd.ExecuteReader(CommandBehavior.Default);
C. SqlDataReader sdrdr = cmd.ExecuteReader(CommandBehavior.SchemaOnly);
D. SqlDataReader sdrdr = cmd.ExecuteReader(CommandBehavior.SequentialAccess);
Answer: D

Microsoft   070-561   certification 070-561

NO.17 You create an application by using the Microsoft .NET Framework 3.5 and Microsoft ADO.NET.
You need to ensure that the application can connect to any type of database.
What should you do?
A. Set the database driver name in the connection string of the application, and then create the
connection object in the following manner.
Dim connection As DbConnection = _ New OdbcConnection(connectionString)
B. Set the database provider name in the connection string of the application, and then create the
connection object in the following manner.
Dim connection As DbConnection = _ New OleDbConnection(connectionString)
C. Create the connection object in the following manner.
Dim factory As DbProviderFactory = _ DbProviderFactories.GetFactory("System.Data.Odbc")
Dim connection As DbConnection = _ factory.CreateConnection()
D. Create the connection object in the following manner.
Dim factory As DbProviderFactory = _ DbProviderFactories.GetFactory(databaseProviderName)
Dim connection As DbConnection = factory.CreateConnection()
Answer: D

Microsoft   070-561 examen   070-561   070-561   certification 070-561   070-561

NO.18 }
You need to compute the total number of records processed by the Select queries in the RecordCount
variable.
Which code segment should you insert at line 16?
A. myReader = myCommand.ExecuteReader();
RecordCount = myReader.RecordsAffected;
B. while (myReader.Read())
{
//Write logic to process data for the first result.
}
RecordCount = myReader.RecordsAffected;
C. while (myReader.HasRows)
{
while (myReader.Read())
{
//Write logic to process data for the second result.
RecordCount = RecordCount + 1;
myReader.NextResult();
}
}
D. while (myReader.HasRows)
{
while (myReader.Read())
{
//Write logic to process data for the second result.
RecordCount = RecordCount + 1;
}
myReader.NextResult();
}
Answer: D

certification Microsoft   070-561   070-561   070-561
22. You create an application by using the Microsoft .NET Framework 3.5 and Microsoft ADO.NET. The
application uses Microsoft SQL Server 2005.
You write the following code segment. (Line numbers are included for reference only.)
01 Dim myConnString As String = _
02 "User ID=<username>;password=<strong password>;" + _
03 "Initial Catalog=pubs;Data Source=myServer"
04 Dim myConnection As New SqlConnection(myConnString)
05 Dim myCommand As New SqlCommand()
06 Dim myReader As DbDataReader
07 myCommand.CommandType = CommandType.Text
08 myCommand.Connection = myConnection
09 myCommand.CommandText = _
10 "Select * from Table1;Select * from Table2;"
11 Dim RecordCount As Integer = 0
12 Try
13 myConnection.Open()
14
15 Catch ex As Exception
16 Finally
17 myConnection.Close()
18 End Try
You need to compute the total number of records processed by the Select queries in the RecordCount
variable.
Which code segment should you insert at line 14?
A. myReader = myCommand.ExecuteReader()
RecordCount = myReader.RecordsAffected
B. While myReader.Read()
'Write logic to process data for the first result.
End While
RecordCount = myReader.RecordsAffected
C. While myReader.HasRows
While myReader.Read()
'Write logic to process data for the second result.
RecordCount = RecordCount + 1
myReader.NextResult()
End While
End While
D. While myReader.HasRows
While myReader.Read()
'Write logic to process data for the second result.
RecordCount = RecordCount + 1
End While
myReader.NextResult()
End While
Answer: D

Microsoft examen   certification 070-561   certification 070-561   certification 070-561
23. You create an application by using the Microsoft .NET Framework 3.5 and Microsoft ADO.NET.
The application uses data from a Microsoft SQL Server 2005 database table. A Web page of the
application contains a GridView server control.
You write the following code segment. (Line numbers are included for reference only.)
01 private void LoadGrid()
02 {
03 using (SqlCommand command = new SqlCommand())
04 {
05 command.Connection = connection;
06 command.CommandText = "SELECT * FROM Customers";
07 connection.Open();
08
09 }
10 }
You need to retrieve the data from the database table and bind the data to the DataSource property of the
GridView server control.
Which code segment should you insert at line 08?
A. SqlDataReader rdr = command.ExecuteReader();
connection.Close();
GridView1.DataSource = rdr;
GridView1.DataBind();
B. SqlDataReader rdr = command.ExecuteReader();
GridView1.DataSource = rdr.Read();
GridView1.DataBind();
connection.Close();
C. SqlDataReader rdr = command.ExecuteReader();
Object[] values = new Object[rdr.FieldCount];
GridView1.DataSource = rdr.GetValues(values);
GridView1.DataBind();
connection.Close();
D. DataTable dt = new DataTable();
using (SqlDataReader reader = command.ExecuteReader())
{
dt.Load(reader);
}
connection.Close();
GridView1.DataSource = dt;
GridView1.DataBind();
Answer: D

Microsoft examen   certification 070-561   certification 070-561   certification 070-561   070-561
24. You create an application by using the Microsoft .NET Framework 3.5 and Microsoft ADO.NET.
The application uses data from a Microsoft SQL Server 2005 database table. A Web page of the
application contains a GridView server control.
You write the following code segment. (Line numbers are included for reference only.)
01 Private Sub LoadGrid()
02 Using command As New SqlCommand()
03 command.Connection = connection
04 command.CommandText = "SELECT * FROM Customers"
05 connection.Open()
06
07 End Using
08 End Sub
You need to retrieve the data from the database table and bind the data to the DataSource property of the
GridView server control.
Which code segment should you insert at line 06?
A. Dim rdr As SqlDataReader = command.ExecuteReader()
connection.Close()
GridView1.DataSource = rdr
GridView1.DataBind()
B. Dim rdr As SqlDataReader = command.ExecuteReader()
GridView1.DataSource = rdr.Read()
GridView1.DataBind()
connection.Close()
C. Dim rdr As SqlDataReader = command.ExecuteReader()
Dim values As Object() = New Object(rdr.FieldCount - 1) {}
GridView1.DataSource = rdr.GetValues(values)
GridView1.DataBind()
D. Dim dt As New DataTable()
Using reader As SqlDataReader = command.ExecuteReader()
dt.Load(reader)
End Using
connection.Close()
GridView1.DataSource = dt
GridView1.DataBind()
Answer: D

certification Microsoft   070-561 examen   certification 070-561   070-561 examen   070-561

NO.19 You create an application by using the Microsoft .NET Framework 3.5 and Microsoft ADO.NET. The
application uses Microsoft SQL Server 2005.
You write the following code segment. (Line numbers are included for reference only.)
01 String myConnString = "User
02 ID=<username>;password=<strong password>;Initial
03 Catalog=pubs;Data Source=myServer";
04 SqlConnection myConnection = new
05 SqlConnection(myConnString);
06 SqlCommand myCommand = new SqlCommand();
07 DbDataReader myReader;
08 myCommand.CommandType =
09 CommandType.Text;
10 myCommand.Connection = myConnection;
11 myCommand.CommandText = "Select * from Table1;
Select * from Table2;";
12 int RecordCount = 0;
13 try
14 {
15 myConnection.Open();
16
17 }
18 catch (Exception ex)
19 {
20 }
21 finally

NO.20 You create an application by using the Microsoft .NET Framework 3.5 and Microsoft ADO.NET.
The application contains a SqlDataAdapter object named daOrder. The SelectCommand property of the
daOrder object is set.
You write the following code segment. (Line numbers are included for reference only.)
01 Private Sub ModifyDataAdapter()
02
03 End Sub
You need to ensure that the daOrder object can also handle updates.
Which code segment should you insert at line 02?
A. Dim cb As New SqlCommandBuilder(daOrder)
cb.RefreshSchema()
B. Dim cb As New SqlCommandBuilder(daOrder)
cb.SetAllValues = True
C. Dim cb As New SqlCommandBuilder(daOrder)
daOrder.DeleteCommand = cb.GetDeleteCommand()
daOrder.InsertCommand = cb.GetInsertCommand()
daOrder.UpdateCommand = cb.GetUpdateCommand()
D. Dim cb As New SqlCommandBuilder(daOrder)
cb.RefreshSchema()
cb.GetDeleteCommand()
cb.GetInsertCommand()
cb.GetUpdateCommand()
Answer: C

Microsoft   070-561   070-561   certification 070-561   certification 070-561   certification 070-561

NO.21 You create an application by using the Microsoft .NET Framework 3.5 and Microsoft ADO.NET.
The application has a DataTable object named OrderDetailTable. The object has the following columns:
ID
OrderID
ProductID
Quantity
LineTotal
The OrderDetailTable object is populated with data provided by a business partner. Some of the records
contain a null value in the LineTotal field and 0 in the Quantity field.
You write the following code segment. (Line numbers are included for reference only.)
01 Dim col As New DataColumn("UnitPrice", GetType(Decimal))
02
03 OrderDetailTable.Columns.Add(col)
You need to add a DataColumn named UnitPrice to the OrderDetailTable object.
Which line of code should you insert at line 02?
A. col.Expression = "LineTotal/Quantity"
B. col.Expression = "LineTotal/ISNULL(Quantity, 1)"
C. col.Expression = "LineTotal.Value/ISNULL(Quantity.Value, 1)"
D. col.Expression = "iif(Quantity > 0, LineTotal/Quantity, 0)"
Answer: D

Microsoft   070-561 examen   070-561 examen

NO.22 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.
The application analyzes large amounts of transaction data that are stored in a different database.
You write the following code segment. (Line numbers are included for reference only.)
01 Using connection As New SqlConnection(sourceConnectionString)
02 Using connection2 As _
New SqlConnection(destinationConnectionString)
03 Using command As New SqlCommand()
04 connection.Open()
05 connection2.Open()
06 Using reader As SqlDataReader = command.ExecuteReader()
07 Using bulkCopy As New SqlBulkCopy(connection2)
08
09 End Using
10 End Using
11 End Using
12 End Using
13 End Using
You need to copy the transaction data to the database of the application.
Which code segment should you insert at line 08?
A. reader.Read()
bulkCopy.WriteToServer(reader)
B. bulkCopy.DestinationTableName = "Transactions"
bulkCopy.WriteToServer(reader)
C. bulkCopy.DestinationTableName = "Transactions"
AddHandler bulkCopy.SqlRowsCopied, _
AddressOf bulkCopy_SqlRowsCopied
D. While reader.Read()
bulkCopy.WriteToServer(reader)
End While
Answer: B

Microsoft   070-561 examen   070-561   certification 070-561

NO.23 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.
Dim query As String = _ "Select EmpNo, EmpName from dbo.Table_1; " + _ "select Name,Age from
dbo.Table_2"
Dim command As New SqlCommand(query, connection)
Dim reader As SqlDataReader = command.ExecuteReader()
You need to ensure that the application reads all the rows returned by the code segment.
Which code segment should you use?
A. While reader.NextResult()
Console.WriteLine([String].Format("{0}, {1}", reader(0), reader(1)))
reader.Read()
End While
B. While reader.Read()
Console.WriteLine([String].Format("{0}, {1}", reader(0), reader(1)))
reader.NextResult()
End While
C. While reader.Read()
Console.WriteLine([String].Format("{0}, {1}", reader(0), reader(1)))
End While
reader.NextResult()
while reader.Read()
Console.WriteLine([String].Format("{0}, {1}", reader(0), reader(1)))
End While
D. While reader.NextResult()
Console.WriteLine([String].Format("{0}, {1}", reader(0), reader(1)))
End While
reader.Read()
while reader.NextResult()
Console.WriteLine([String].Format("{0}, {1}", reader(0), reader(1)))
End While
Answer: C

Microsoft   070-561   certification 070-561

NO.24 You create an application by using the Microsoft .NET Framework 3.5 and Microsoft ADO.NET.
The application contains a DataSet object named OrderDS that has the Order and OrderDetail tables as
shown in the following exhibit.
You write the following code segment. (Line numbers are included for reference only.)
01 Private Sub GetOrders(ByVal cn As SqlConnection)
02 Dim cmd As SqlCommand = cn.CreateCommand()
03 cmd.CommandText = "Select * from [Order]; " + _
"Select * from [OrderDetail];"
04 Dim da As New SqlDataAdapter(cmd)
05
06 End Sub
You need to ensure that the Order and the OrderDetail tables are populated.
Which code segment should you insert at line 05?
A. da.Fill(OrderDS)
B. da.Fill(OrderDS.Order)
da.Fill(OrderDS.OrderDetail)
C. da.TableMappings.AddRange(New DataTableMapping() _
{New DataTableMapping("Table", "Order"), _
New DataTableMapping("Table1", "OrderDetail")})
da.Fill(OrderDS)
D. Dim mapOrder As New DataTableMapping()
mapOrder.DataSetTable = "Order"
Dim mapOrderDetail As New DataTableMapping()
mapOrder.DataSetTable = "OrderDetail"
da.TableMappings.AddRange(New DataTableMapping() _
{mapOrder, mapOrderDetail})
da.Fill(OrderDS)
Answer: C

Microsoft examen   certification 070-561   070-561 examen   070-561 examen

NO.25 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.
string queryString = "Select Name, Age from dbo.Table_1";
SqlCommand command = new SqlCommand(queryString, (SqlConnection)connection));
You need to get the value that is contained in the first column of the first row of the result set returned by
the query.
Which code segment should you use?
A. var value = command.ExecuteScalar();
string requiredValue = value.ToString();
B. var value = command.ExecuteNonQuery();
string requiredValue = value.ToString();
C. var value = command.ExecuteReader(CommandBehavior.SingleRow);
string requiredValue = value[0].ToString();
D. var value = command.ExecuteReader(CommandBehavior.SingleRow);
string requiredValue = value[1].ToString();
Answer: A

Microsoft   070-561 examen   070-561

NO.26 myConnection.Close();

NO.27 {

NO.28 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.
The connection string of the application is defined in the following manner.
"Server=Prod;Database=WingtipToys;Integrated
Security=SSPI;Asynchronous Processing=true"
The application contains the following code segment. (Line numbers are included for reference only.)
01 protected void UpdateData(SqlCommand cmd) {
02 cmd.Connection.Open();
03
04 lblResult.Text = "Updating ...";
05 }
The cmd object takes a long time to execute.
You need to ensure that the application continues to execute while cmd is executing.
What should you do?
A. Insert the following code segment at line 03.
cmd.BeginExecuteNonQuery(new AsyncCallback(UpdateComplete), cmd);
Add the following code segment.
private void UpdateComplete (IAsyncResult ar) {
int count = (int)ar.AsyncState;
LogResults(count);
}
B. Insert the following code segment at line 03.
cmd.BeginExecuteNonQuery(new AsyncCallback(UpdateComplete), cmd);
Add the following code segment.
private void UpdateComplete (IAsyncResult ar) {
SqlCommand cmd = (SqlCommand)ar.AsyncState;
int count = cmd.EndExecuteNonQuery(ar);
LogResults(count);
}
C. Insert the following code segment at line 03.
cmd.StatementCompleted += new
StatementCompletedEventHandler(UpdateComplete);
cmd.ExecuteNonQuery();
Add the following code segment.
private void UpdateComplete (object sender, StatementCompletedEventArgs e) {
int count = e.RecordCount;
LogResults(count);
}
D. Insert the following code segment at line 03.
SqlNotificationRequest notification = new
SqlNotificationRequest("UpdateComplete", "", 10000);
cmd.Notification = notification;
cmd.ExecuteNonQuery();
Add the following code segment.
private void UpdateComplete(SqlNotificationRequest notice) {
int count = int.Parse(notice.UserData);
LogResults(count);
}
Answer: B

Microsoft examen   certification 070-561   070-561 examen   070-561   certification 070-561

NO.29 You create an application by using the Microsoft .NET Framework 3.5 and Microsoft ADO.NET.
The application contains a DataSet object named orderDS. The object contains a table named Order as
shown in the following exhibit.
The application uses a SqlDataAdapter object named daOrder to populate the Order table.
You write the following code segment. (Line numbers are included for reference only.)
01 private void FillOrderTable(int pageIndex) {
02 int pageSize = 5;
03
04 }
You need to fill the Order table with the next set of 5 records for each increase in the pageIndex value.
Which code segment should you insert at line 03?
A. string sql = "SELECT SalesOrderID, CustomerID, OrderDate FROM Sales.SalesOrderHeader";
daOrder.SelectCommand.CommandText = sql;
daOrder.Fill(orderDS, pageIndex, pageSize, "Order");
B. int startRecord = (pageIndex - 1) * pageSize;
string sql = "SELECT SalesOrderID, CustomerID, OrderDate FROM Sales.SalesOrderHeader";
daOrder.SelectCommand.CommandText = sql;
daOrder.Fill(orderDS, startRecord, pageSize, "Order");
C. string sql = string.Format("SELECT TOP {0} SalesOrderID, CustomerID,
OrderDate FROM Sales.SalesOrderHeader WHERE SalesOrderID > {1}", pageSize, pageIndex);
daOrder.SelectCommand.CommandText = sql;
daOrder.Fill(orderDS, "Order");
D. int startRecord = (pageIndex - 1) * pageSize;
string sql = string.Format("SELECT TOP {0} SalesOrderID, CustomerID,
OrderDate FROM Sales.SalesOrderHeader WHERE SalesOrderID > {1}",
pageSize, startRecord);
daOrder.SelectCommand.CommandText = sql;
daOrder.Fill(orderDS, "Order");
Answer: B

Microsoft   070-561 examen   070-561   070-561 examen

NO.30 You create an application by using the Microsoft .NET Framework 3.5 and Microsoft ADO.NET.
The application contains a TextBox control named txtProductID. The application will return a list of active
products that have the ProductID field equal to the txtProductID.Text property.
You write the following code segment. (Line numbers are included for reference only.)
01 Private Function GetProducts(ByVal cn _
As SqlConnection) As DataSet
02 Dim cmd As New SqlCommand()
03 cmd.Connection = cn
04 Dim da As New SqlDataAdapter(cmd)
05 Dim ds As New DataSet()
06
07 da.Fill(ds)
08 Return ds
09 End Function
You need to populate the DataSet object with product records while avoiding possible SQL injection
attacks.
Which code segment should you insert at line 06?
A. cmd.CommandText = _
String.Format("sp_sqlexec 'SELECT ProductID, " + _
"Name FROM Product WHERE ProductID={0} AND IsActive=1'", _
txtProductID.Text)
B. cmd.CommandText = _
String.Format("SELECT ProductID, " + _
"Name FROM Product WHERE ProductID={0} AND IsActive=1", _
txtProductID.Text)
cmd.Prepare()
C. cmd.CommandText = _
String.Format("SELECT ProductID, " + _
"Name FROM Product WHERE ProductID={0} AND IsActive=1", _
txtProductID.Text)
cmd.CommandType = CommandType.TableDirect
D. cmd.CommandText = "SELECT ProductID, " + _
"Name FROM Product WHERE ProductID=@productID AND IsActive=1"
cmd.Parameters.AddWithValue("@productID", txtProductID.Text)
Answer: D

Microsoft   070-561   070-561   070-561

Vous choisissez l'aide de Pass4Test, Pass4Test fait tous effort à vous aider à réussir le test. De plus, la mise à jour de Q&A pendant un an est gratuite pour vous. Vous n'avez plus raison à hésiter. Pass4Test est une meilleure assurance pour le succès de test Microsoft 070-561. Ajoutez la Q&A au panier.

Le meilleur matériel de formation examen Microsoft 070-663

Bien qu'Il y ait plein de talentueux dans cette société, il manque beaucoup de professionnels dans les domaine en cours de développement, l'Industrie IT est l'un de ces domaines. Donc le test Microsoft 070-663 est un bon l'examination de technique informatique. Pass4Test est un site d'offrir la formation particulière au test Microsoft 070-663.

C'est un bon choix si vous prendre l'outil de formation de Pass4Test. Vous pouvez télécharger tout d'abord le démo gratuit pour prendre un essai. Vous aurez plus confiances sur Pass4Test après l'essai de notre démo. Si malheureusement, vous ne passe pas le test, votre argent sera tout rendu.

Choisissez le Pass4Test, choisissez le succès de test Microsoft 070-663. Bonne chance à vous.

Le programme de formation Microsoft 070-663 offert par Pass4Test comprend les exercices et les test simulation. Vous voyez aussi les autres sites d'offrir l'outil de formation, mais c'est pas difficile à découvrir une grand écart de la qualité entre Pass4Test et les autres fournisseurs. Celui de Pass4Test est plus complet et convenable pour la préparation dans une courte terme.

Avec l'aide du Pass4Test, vous allez passer le test de Certification Microsoft 070-663 plus facilement. Tout d'abord, vous pouvez choisir un outil de traîner de Microsoft 070-663, et télécharger les Q&A. Bien que il y en a beaucoup de Q&A pour les tests de Certification IT, les nôtres peuvent vous donner non seulement plus de chances à s'exercer avant le test réel, mais encore vous feront plus confiant à réussir le test. La haute précision des réponses, la grande couverture des documentations, la mise à jour constamment vous assurent à réussir votre test. Vous dépensez moins de temps à préparer le test, mais vous allez obtenir votre certificat plus tôt.

Le test Microsoft 070-663 peut bien examnier les connaissances et techniques professionnelles. Pass4Test est votre raccourci amené au succès de test Microsoft 070-663. Chez Pass4Test, vous n'avez pas besoin de dépenser trop de temps et d'argent juste pour préparer le test Microsoft 070-663. Travaillez avec l'outil formation de Pass4Test visé au test, il ne vous demande que 20 heures à préparer.

Code d'Examen: 070-663
Nom d'Examen: Microsoft (Pro: Designing and Deploying Messaging Solutions with Microsoft Exchange Server 2010)
Questions et réponses: 275 Q&As

Pass4Test peut offrir la facilité aux candidats qui préparent le test Microsoft 070-663. Nombreux de candidats choisissent le Pass4Test à préparer le test et réussir finalement à la première fois. Les experts de Pass4Test sont expérimentés et spécialistes. Ils profitent leurs expériences riches et connaissances professionnelles à rechercher la Q&A Microsoft 070-663 selon le résumé de test réel Microsoft 070-663. Vous pouvez réussir le test à la première fois sans aucune doute.

070-663 Démo gratuit à télécharger: http://www.pass4test.fr/070-663.html

NO.1 A corporate environment will include Exchange Server 2010.
You are planning capacity for the Mailbox servers.You require 800 GB of disk space for mailbox content.
You need to recommend the minimum amount of additional space required for content indexing.
What should you recommend?
A.80 GB
B.96 GB
C.120 GB
D.160 GB
Answer: A

Microsoft   070-663   070-663   certification 070-663

NO.2 Your network consists of an Active Directory domain that contains the domain controllers shown in the
following table.
You plan to deploy an Exchange Server 2010 server in each site.
You need to recommend changes to the domain controllers to support the installation of Exchange Server
2010.
What should you do?
A.Enable Server2 as a global catalog server.
B.Enable Server3 as a global catalog server.
C.Reinstall Server2 to Windows Server 2008 SP2 (x64).
D.Reinstall Server3 to Windows Server 2008 SP2 (x64).
Answer: A

Microsoft   070-663   certification 070-663   070-663

NO.3 A corporate environment will include Exchange Server 2010.
You are designing a deployment plan for the Mailbox servers.
You need to recommend the minimum amount of physical memory that supports the following
requirements:
Use single-role Mailbox servers.
Each Mailbox server must support 22.5 GB of database cache.
How much memory should you recommend?
A.24 GB
B.32 GB
C.48 GB
D.64 GB
Answer: B

Microsoft   070-663   070-663 examen   certification 070-663   070-663 examen

NO.4 A corporate environment includes an on-premise deployment of Exchange Server 2010 SP1.
The company needs to share calendar availability information with a partner.The partner is using a
cloud-based Exchange Server 2010 SP1 service.
You need to recommend a solution for sharing calendar availability information for all employees with the
partner.
What should you recommend?
A.Create a federation trust and a TXT DNS record.Then create an organization relationship with the
partner.
B.Create a federation trust and a CNAME DNS record.Then create an organization relationship with the
partner.
C. Add the partner s domain as an accepted domain.Then create a TXT DNS record and a transport
rule.
D. Add the partner s domain as an accepted domain.Then create a CNAME DNS record and a group
policy for all users.
Answer: A

Microsoft   070-663 examen   070-663

NO.5 You are designing an Exchange organization for a company named Contoso, Ltd.All servers in the
organization will have Exchange Server 2010 Service Pack 1 (SP1) installed.
Contoso has a partner company named Fabrikam, Inc.Fabrikam has an Exchange organization that
contains only Exchange Server 2010 SP1 servers.
You plan to configure a federation trust between Fabrikam and Contoso.
You need to recommend a certificate for the federation trust.
Which of the following certificates is the best recommendation? (More than one answer choice may
achieve the goal.Select the BEST answer.)
A.a certificate from a third-party certification authority (CA)
B.a certificate from an internal certification authority (CA)
C.the self-signed certificate automatically generated by the Exchange 2010 Setup wizard
D.the self-signed certificate automatically generated by the New Federation Trust wizard
Answer: D

Microsoft examen   070-663   070-663   070-663

NO.6 You have an Exchange Server 2010 organization.
Your company acquires another company that has an Exchange Server 2010 organization.
You need to recommend a solution for the Exchange Server 2010 organization to meet the following
requirements:
All users must be able to view the global address lists ( GALs ) for both organizations
All users must be able to view free/busy information for users in both organizations
What should you include in the solution?
A.Implement Active Directory Federation Services (AD FS) Run the Microsoft Exchange
Inter-Organization Replication tool
B.Implement Microsoft Identity Lifecycle Manager (ILM) 2007
Create a two-way cross-forest trust between both organizations
C.Create a federation trust between both organizations
Implement Microsoft Identity Lifecycle Manager (ILM) 2007
Run the New Organization Relationship wizard
D.Create a two-way cross-forest trust between both organizations
Implement Active Directory Federation Services (AD FS)Run the Microsoft Exchange Inter-Organization
Replication tool
Answer: C

certification Microsoft   070-663   070-663   070-663   certification 070-663

NO.7 A company named Contoso, Ltd.has offices in Montreal, Seattle, and Denver.An Active Directory site
exists for each office.Only the Montreal site is connected to the Internet.
You are designing an Exchange organization for Contoso.All servers in the organization will have
Exchange Server 2010 Service Pack 1 (SP1) installed.
Each office will contain two Exchange servers that each has the Mailbox, Hub Transport, and Client
Access server roles installed.
You need to recommend a deployment solution for the Client Access servers.
Which of the following solutions is the best recommendation? (More than one answer choice may achieve
the goal.Select the BEST answer.)
A.one Client Access server array in each office
round-robin DNS in each office
B.a load balancing solution in each office
round-robin DNS in the Montreal office
C.one Client Access server array in each office
a load balancing solution in each office
D.one Client Access server array that contains all of the Client Access servers
a load balancing solution in the Montreal office
Answer: C

Microsoft examen   070-663 examen   certification 070-663   070-663 examen

NO.8 Contoso, Ltd.has an Exchange Server 2010 environment that accepts email for the contoso.com email
domain.Fabrikam, Inc.has an Exchange Server 2010 environment that accepts mail for the fabrikam.com
email domain.
Contoso acquires Fabrikam and establishes an internal network connection between the two
companies.After the acquisition, only the Contoso Exchange Server environment accepts external
email.You have the following requirements:
Retain existing fabrikam.com email addresses.
Enable users in both Exchange Server environments to receive mail at contoso.com email addresses.
You need to recommend a solution that meets the requirements.
Which two actions should you recommend? (Each correct answer presents part of the solution.Choose
two.)
A.Create an internal send connector.
B.Create an internal receive connector.
C.Create an internal relay accepted domain for contoso.com.
D.Create an external relay accepted domain for contoso.com.
Answer: AC

certification Microsoft   certification 070-663   070-663

NO.9 A corporate environment will include Exchange Server 2010 in a single Active Directory Domain
Services (AD DS) domain.The primary DNS suffix of the domain controllers is not the same as the DNS
domain name.
You are designing the Exchange Server 2010 deployment plan.
You need to recommend a solution that allows Exchange Server 2010 servers to access the domain
controllers.
What should you recommend?
A.Modify the DNS-Host-Name AD DS attribute on the domain object container.
B.Modify the NETBIOS-Name AD DS attribute on the Exchange Server computer objects.
C.Modify the msDS-AllowedDNSSuffixes AD DS attribute on the domain object container.
D.Modify the msDS-AdditionalDnsHostName AD DS attribute on the domain object container.
Answer: C

Microsoft   070-663 examen   070-663   070-663   070-663

NO.10 You have a main office and five branch offices.The offices connect to each other by using a WAN link.
An Active Directory site exists for each office.Each site has a separate IP site link to all other sites.The
main office site is configured as a hub site.
You have an Exchange Server 2010 organization.
You discover that messages sent between offices are not routed through the Hub Transport servers in the
main office.
You need to ensure that all messages sent between offices are routed through the Hub Transport servers
in the main office.
What should you do?
A.Change all IP site links to SMTP site links.
B.Modify the Exchange-specific cost for each site link.
C.From the Hub Transport servers in each site, create a journal rule.
D.From the Hub Transport servers in each site, create a transport rule.
Answer: B

certification Microsoft   certification 070-663   070-663 examen

NO.11 A corporate environment will include client computers that run Microsoft Outlook 2010.Email services
will be provided to some users by a cloud-based Exchange Server 2010 SP1 service provider and to
other users by an on-premise deployment of Exchange Server 2010 SP1.
You need to recommend a solution that will allow users in the cloud-based environment to receive internal
Out of Office replies from users in the on-premise environment.
What should you recommend?
A.Create a transport rule.
B.Create a remote domain.
C.Create an accepted domain.
D.Create an organization relationship.
Answer: B

Microsoft   070-663   070-663

NO.12 A corporate environment includes an on-premise deployment of Exchange Server 2010 SP1 and an
Active Directory Domain Services (AD DS) domain.
The company plans to move some users to a cloud-based Exchange Server 2010 SP1 environment.The
migration process must meet the following requirements:
Integrate the on-premise environment with the cloud-based environment.
Migrate all existing mailbox items.
Authenticate all users by using their AD DS credentials.
Share calendar availability information among all users.
You need to recommend a tool for gathering information and verifying that the requirements can be met.
Which tool should you recommend?
A.Exchange Best Practices Analyzer
B.Exchange Deployment Assistant
C.Exchange Pre-Deployment Analyzer
D.Exchange Remote Connectivity Analyzer
Answer: B

Microsoft   070-663   certification 070-663   070-663   070-663

NO.13 A corporate environment includes a main office and a branch office.
The company plans to deploy Exchange Server 2010.The Mailbox servers will be part of a single
database availability group (DAG) that spans both locations.There is only intermittent connectivity
between the two locations.
You need to recommend a public folder database solution that enables users from either location to
consistently access public folders.
Which two actions should you recommend? (Each correct answer presents part of the solution.Choose
two.)
A.Configure cross-site RPC Client Access on the DAG.
B.Configure public folder referrals between the main office and the branch office.
C.Create a single public folder database in the main office and add it as a replica for the public folders.
D.Create a single public folder database in the branch office and add it as a replica for the public folders.
Answer: CD

certification Microsoft   070-663   070-663   070-663 examen

NO.14 You have an Exchange Server 2003 organization.All servers have 32-bit hardware.
You plan to transition to Exchange Server 2010 and deploy new Mailbox servers.
You need to evaluate the current servers to provide recommendations for the deployment of the new
Mailbox servers.
What should you include in the evaluation?
A.number of concurrent connections to Outlook Web Access
number of mailbox databases
memory utilization
B.number of concurrent connections to Outlook Web Access
RPC latency
disk I/O latency
C.number of concurrent MAPI connections
size of mailbox databases
number of mailboxes
D.number of mailboxes
disk I/O latency
RPC latency
Answer: C

Microsoft   070-663   070-663

NO.15 You are the enterprise administrator for an Exchange Server 2010 organization.All users run Microsoft
Office Outlook 2010.
You are designing a sharing solution for your organization and a partner organization.The partner
organization also uses Exchange Server 2010.
You need to recommend a strategy for sharing information with the partner organization to meet the
following requirements:
Provide cross-organizational access to user contacts
Provide cross-organizational access to free\busy information
What should you recommend?
A.Creating cross-forest trusts
B.Implementing Federated Delegation
C.Implementing Microsoft Identify Lifecycle Manager (ILM) 2007
D.Running the Microsoft Exchange Inter-Organization Replication tool
Answer: B

Microsoft   certification 070-663   070-663   070-663

NO.16 Your company has a main office and 10 branch offices.Each office has a direct link to the Internet.Each
branch office has a WAN link that connects to the main office.
Your network consists of an Active Directory forest.Each office is configured as an Active Directory site.
You plan to deploy an Exchange Server 2010 Hub Transport server in each site.
You need to design a message routing solution to meet the following requirements:
Branch office connections to the Internet must be used to deliver e-mail
Branch office servers must use the WAN link to the main office to deliver e-mail to other branch offices
Branch office servers must be prevented from sending e-mail to the Internet by using the WAN link to the
main office
The solution must minimize administrative overhead
What should you include in the solution?
A.one Send connector for each site
B.one SMTP site link for each site
C.two Send connectors for each site
D.10 Send connectors for each site
Answer: A

certification Microsoft   070-663   certification 070-663   070-663   070-663 examen   certification 070-663

NO.17 You have an Exchange Server 2010 Hub Transport server named Hub1.
You install an application on a third-party server named Server1.
You discover that the application cannot authenticate to remote servers.
You need to ensure that the application can relay e-mail messages by using Hub1.
What should you do?
A.Create a new Send connector
Add the TCP/IP address of Server1 to the Send connector
Modify the permissions for the Send connector
B.Create a new Receive connector
Add the TCP/IP address of Server1 to the Receive connector
Modify the permissions for the Receive connector
C.Add the TCP/IP address of Server1 to the default Receive connector
Create a message classification
Create a transport rule
D.Add the TCP/IP address of Server1 to the Client Receive connector
Create a remote domain
Create a transport rule
Answer: B

Microsoft   070-663 examen   070-663 examen

NO.18 A corporate environment will include Exchange Server 2010 in a single Active Directory Domain
Services (AD DS) domain.The AD DS site topology is configured as shown in the exhibit.(Click the Exhibit
button.)You are designing the Exchange Server deployment plan.You have the following requirements:
Deploy Exchange Server 2010 servers in two AD DS sites.
Maximize the security of the Exchange Server deployment.
You need to recommend a solution that meets the requirements.
Which two actions should you recommend? (Each correct answer presents part of the solution.Choose
two.)
A.Configure DC2 as a read-only global catalog server.
B.Configure DC3 as a writable global catalog server.
C.Deploy a Mailbox server, a Hub Transport server, and a Client Access server in Site A and in Site B.
D.Deploy a Mailbox server, a Hub Transport server, and a Client Access server in Site A and in Site C.
Answer: BD

Microsoft   070-663   certification 070-663

NO.19 You have an Exchange organization.All servers in the organization have Exchange Server 2010
Service Pack 1 (SP1) installed.The organization contains the servers configured as shown in the following
table.
Server name
Server role
Edge1
Edge Transport
Edge2
Edge Transport
Hub1
Hub Transport
Hub2
Hub Transport
CAS1
Client Access
CAS2
Client Access
MBX1
Mailbox
MBX2
Mailbox
You plan to deploy a line-of-business application named App1.App1 will have a built-in SMTP service that
will send e-mail messages to users in the Exchange organization.
You need to recommend a message routing solution that meets the following requirements:
Ensures that App1 can send e-mail messages to internal users.
Prevents other servers on the internal network from sending e-mail messages to internal users.
Ensures that each e-mail message received by the Exchange organization is scanned for viruses.
You install Microsoft Forefront Protection 2010 for Exchange Server on both Edge Transport servers.
Which of the following solutions is the best recommendation? (More than one answer choice may achieve
the goal.Select the BEST answer.)
A.On Hub1, install Forefront Protection 2010 for Exchange Server.
On Hub1, create a new internal Receive connector, and then configure the Remote Network settings to
include the IP address of App1.
On the server that hosts App1, configure the SMTP service to relay e-mail directly to Hub1.
B.From the properties of the default Receive connector on Edge1, configure the Remote Network settings
to include the IP address of App1, and then add the Anonymous users permission group to the Receive
connector.
On the server that hosts App1, configure the SMTP service to relay e-mail to Edge1.
C.On Hub1, install Forefront Protection 2010 for Exchange Server.
On Hub1, add the Anonymous users permission group to the default Receive connector.
On an internal DNS server, create a Mail Exchanger (MX) record that points to Hub1.
On the server that hosts App1, configure the SMTP service to relay e-mail by using DNS name resolution.
D.On Edge1, create a new internal Receive connector.
From the properties of the new Receive connector, configure the Remote Network settings to include the
IP address of App1, and then add the Anonymous users permission group to the Receive connector.
From the properties of the default internal Receive connector on Edge1, exclude the IP addresses of the
internal network.
On the server that hosts App1, configure the SMTP service to relay e-mail to Edge1.
Answer: D

Microsoft   070-663   070-663   070-663

NO.20 Your company has three offices.Each office has a direct link to the Internet.The offices connect to each
other by using a WAN link.
Your network consists of an Active Directory forest that contains two domains and one site.The functional
level of the forest is Windows Server 2003.All domain controllers run Windows Server 2003 R2.Each
office contains two domain controllers for each domain.All domain controllers are global catalog servers.
In each office, you plan to deploy Mailbox, Client Access, and Hub Transport Exchange Server 2010
servers.All e-mail messages sent to the Internet will be delivered from a local server in each office.
You need to recommend changes to the Active Directory environment to support the planned deployment
of Exchange Server 2010.
What should you recommend?
A.Disable site link bridging for the forest.
B.Modify the cost values for the default IP site link.
C.Create a separate Active Directory subnet and site object for each office.
D.Upgrade one domain controller in each office to Windows Server 2008.
Answer: C

Microsoft   070-663   070-663 examen

Est-ce que vous vous souciez encore de réussir le test Microsoft 070-663? Est-ce que vous attendez plus le guide de formation plus nouveaux? Le guide de formation vient de lancer par Pass4Test peut vous donner la solution. Vous pouvez télécharger la partie de guide gratuite pour prendre un essai, et vous allez découvrir que le test n'est pas aussi dur que l'imaginer. Pass4Test vous permet à réussir 100% le test. Votre argent sera tout rendu si vous échouez le test.

Microsoft 70-404 examen pratique questions et réponses

En quelques années, le test de certification de Microsoft 70-404 faisait un grand impact sur la vie quotidienne pour pas mal de gens. Voilà le problème, comme on peut réussir facilement le test de Microsoft 70-404? Notre Pass4Test peut vous aider à tout moment à résourdre ce problème rapidement. Pass4Test peut vous offrir une bonne formation particulière à propos du test de certification 70-404. Notre outil de test formation est apporté par les IT experts. Chez Pass4Test, vous pouvez toujours trouver une formations à propos du test Certification 70-404, plus nouvelle et plus proche d'un test réel. Tu choisis le Pass4Test aujourd'hui, tu choisis le succès de test Certification demain.

La partie plus nouvelle de test Certification Microsoft 70-404 est disponible à télécharger gratuitement dans le site de Pass4Test. Les exercices de Pass4Test sont bien proches de test réel Microsoft 70-404. En comparaison les Q&As dans les autres sites, vous trouverez que les nôtres sont beaucoup plus complets. Les Q&As de Pass4Test sont tout recherchés par les experts de Pass4Test, y compris le test simulation.

Être un travailleur IT, est-ce que vous vous souciez encore pour passer le test Certificat IT? Le test examiner les techniques et connaissances professionnelles, donc c'est pas facile à réussir. Pour les candidats qui participent le test à la première fois, une bonne formation est très importante. Pass4Test offre les outils de formation particulier au test et bien proche de test réel, n'hésitez plus d'ajouter la Q&A au panier.

Les produits de Pass4Test a une bonne qualité, et la fréquence de la mise à jour est bien impressionnée. Si vous avez déjà choisi la Q&A de Pass4Test, vous n'aurez pas le problème à réussir le test Microsoft 70-404.

Dans cette société, il y a plein de gens talentueux, surtout les professionnels de l'informatique. Beaucoup de gens IT se battent dans ce domaine pour améliorer l'état de la carrière. Le test 70-404 est lequel très important dans les tests de Certification Microsoft. Pour être qualifié de Microsoft, on doit obtenir le passport de test Microsoft 70-404.

Si vous hésitez encore à nous choisir, vous pouvez tout d'abord télécharger le démo gratuit dans le site Pass4Test pour connaître mieux la fiabilité de Pass4Test. Nous avons la confiance à vous promettre que vous allez passer le test Microsoft 70-404 à la première fois.

Finalement, la Q&A Microsoft 70-404 plus nouvelle est lancé avec tous efforts des experts de Pass4Test. Aujourd'hui, dans l'Industrie de IT, si on veut se renforcer sa place, il faut se preuve la professionnalité aux les autres. Le test Microsoft 70-404 est une bonne examination des connaissances professionnelles. Avec le passport de la Certification Microsoft, vous aurez un meilleur salaire et une plus grande space à se développer.

Code d'Examen: 70-404
Nom d'Examen: Microsoft (TS: System Center Service Manager 2010, Configuring (available in 2010))
Questions et réponses: 165 Q&As

70-404 Démo gratuit à télécharger: http://www.pass4test.fr/70-404.html

Pass4Test est un site d'offrir l'outil de formation convenable pour les candidats de test Certification IT. Le produit de Pass4Test peut aider les candidats à économiser les temps et les efforts. L'outil de formation est bien proche que test réel. Vous allez réussir le test 100% avec l'aide de test simulation de Pass4Test. C'est une bonne affaire à prendre le Certificat IT en coûtant un peu d'argent. N'hésitez plus d'ajouter l'outil de formation au panier.

Certification Microsoft de téléchargement gratuit pratique d'examen 70-699, questions et réponses

Si vous faites toujours la lutte contre le test Microsoft 70-699, Pass4Test peut vous aider à résoudre ces difficultés avec ses Q&As de qualité, et atteindre le but que vous avez envie de devenir un membre de Microsoft 70-699. Si vous avez déjà décidé à s'améliorer via Microsoft 70-699, vous n'avez pas aucune raison à refuser Pass4Test. Pass4Test peut vous aider à passer le test à la première fois.

But que Pass4Test n'offre que les produits de qualité est pour vous aider à réussir le test Microsoft 70-699 100%. Le test simulation offert par Pass4Test est bien proche de test réel. Si vous ne pouvez pas passer le test Microsoft 70-699, votre argent sera tout rendu.

Nous sommes clairs que ce soit necessaire d'avoir quelques certificats IT dans cette industrie de plus en plus intense. Le Certificat IT est une bonne examination des connaissances démandées. Dans l'Industrie IT, le test Microsoft 70-699 est une bonne examination. Mais c'est difficile à passer le test Microsoft 70-699. Pour améliorer le travail dans le future, c'est intélligent de prendre une bonne formation en coûtant un peu d'argent. Vous allez passer le test 100% en utilisant le Pass4Test. Votre argent sera tout rendu si votre test est raté.

Si vous voulez se prouver une compétition et s'enraciner le statut dans l'industrie IT à travers de test Certification Microsoft 70-699, c'est obligatoire que vous devez avior les connaissances professionnelles. Mais il demande pas mal de travaux à passer le test Certification Microsoft 70-699. Peut-être d'obtenir le Certificat Microsoft 70-699 peut promouvoir le tremplin vers l'Industrie IT, mais vous n'avez pas besoin de travailler autant dur à préparer le test. Vous avez un autre choix à faire toutes les choses plus facile : prendre le produit de Pass4Test comme vos matériaux avec qui vous vous pratiquez avant le test réel. La Q&A de Pass4Test est recherchée particulièrement pour le test IT.

Code d'Examen: 70-699
Nom d'Examen: Microsoft (Windows Server 2003, MCSA Security Specialization Skills Update)
Questions et réponses: 117 Q&As

Pass4Test peut non seulement vous aider à réussir votre rêve, mais encore vous offre le service gratuit pendand un an après vendre en ligne. Q&A offerte par l'équipe de Pass4Test vous assure à passer 100% le test de Certification Microsoft 70-699.

70-699 Démo gratuit à télécharger: http://www.pass4test.fr/70-699.html

NO.1 Your network consists of an Active Directory domain. You have an organizational unit
(OU) named KioskOU and an OU named StaffOU. All user accounts are located in the
StaffOU. All user accounts are configured to use roaming profiles. You have a computer
named Kiosk1 that runs Windows XP . Kiosk1 is located in KioskOU. You need to
prevent user profiles from being stored on Kiosk1. The solution must ensure that users
can access their roaming profiles on other computers. What should you do next?
A. Link a Group Policy object (GPO) to StaffOU. Enable Limit profile size and set it to
0 KB. B. Link a Group Policy object (GPO) to KioskOU. Enable Limit profile size and
set it to 0 KB.
C. Link a Group Policy object (GPO) to StaffOU. Enable Delete cached copies of
roaming profiles.
D. Link a Group Policy object (GPO) to KioskOU. Enable Delete cached copies of
roaming profiles.
Answer: D

Microsoft   70-699   70-699   70-699
4. You are the network administrator for your company. The network consists of a single
Active Directory domain. All client computers run Windows XP Professional. The
finance department uses a specific naming process to audit users and their computers.
The process requires that each user's client computer has an account in Active Directory
created by the IT Department and that each client computer name corresponds to a
specific user account. A user named Maria is a member of only the Domain Users
security group. She reports that the hardware on her computer fails. She receives a new
computer. You need to add Maria's new computer to the domain. You need to comply
with the finance department naming process. What should you do?
A. Instruct Maria to run the ipconfig /flushdns command on her new computer and to
add the new computer to the domain by using the same computer name as her failed
computer.
B. Assign Maria permissions for adding computer accounts to the default
container named
Computers. Instruct Maria to add her new computer to the domain.
C. Reset the computer account for Maria's failed computer. Instruct Maria to add her
new computer to the domain by using the same name as her failed computer.
D. Configure the IP address of Maria's new computer to be the same as the failed
computer. Instruct Maria to add the new computer to the domain.
Answer: C

Microsoft   70-699   certification 70-699   70-699   70-699 examen   70-699
5. Your network consists of a single Active Directory domain. All servers run Windows
Server 2003 Service Pack 2 (SP2). The domain contains a member server named
Server1. Server1 is a file server. You accidentally delete the computer account for
Server1 from the domain. You need to ensure that users can access the file shares on
Server1 by using their domain user accounts. You must achieve this goal by using the
minimum amount of administrative effort. What should you do?
A. On Server1, run the Netdom reset command.
B. On Server1, add the computer to a workgroup and then add the computer to the
domain. Restart Server1.
C. From Active Directory Users and Computers, create a new computer account named
Server1 in the domain. Restart Server1.
D. On a domain controller, perform an authoritative restore in Active Directory for the
Server1 computer account. Restart Server1.
Answer: B

Microsoft   70-699 examen   70-699   70-699

NO.2 You are the network administrator for your company. The network consists of a single
Active Directory domain. All servers run Windows Server 2003. All client computers
run Windows XP Professional. The network contains a domain controller named DC1.
You create a preconfigured user profile on a client computer named Computer1. You
need to ensure that all users receive the preconfigured user profile when they log on to
the network for the first time. All users must still be able to personalize their desktop
environments. What should you do?
A. From Computer1, copy the user profile to \\DC1\netlogon\Default User.
B. From Computer1, copy the user profile to \\DC1\netlogon\Default User. Change the
User Profile path for all users in Active Directory to \\DC1\netlogon\Default User.
C. On Computer1, copy the user profile to the C:\Documents and Setting\Default User
folder. Share the Default User profile on the network.
D. Create a Folder Redirection policy in Active Directory.
Answer: A

certification Microsoft   70-699   70-699 examen   70-699

NO.3 Your network consists of an Active Directory domain. All client computers run
Windows Vista. All user accounts have roaming user profiles. You have 10 kiosk
computers. The kiosk computer accounts are in an organizational unit (OU) named
KioskOU. You need to ensure that all users who log on to the kiosk computer have the
same user profile. The solution must ensure that users receive their personalized user
profiles when they log on to all computers except the kiosk computers. What should you
do?
A. Modify the profile path settings on the user accounts.
B. Modify the home directory settings on the user accounts.
C. Modify the user profile settings by using a Group Policy object (GPO).
D. Rename %systemdrive%\users\default\ as %systemdrive%\users\default.man on
the kiosk computers.
Answer: C

Microsoft   70-699   certification 70-699   70-699   70-699

Pass4Test a une équipe se composant des experts qui font la recherche particulièrement des exercices et des Q&As pour le test certification Microsoft 70-699, d'ailleurs ils peuvent vous proposer à propos de choisir l'outil de se former en ligne. Si vous avez envie d'acheter une Q&A de Pass4Test, Pass4Test vous offrira de matériaux plus détailés et plus nouveaux pour vous aider à approcher au maximum le test réel. Assurez-vous de choisir le Pass4Test, vous réussirez 100% le test Microsoft 70-699.

Guide de formation plus récente de Microsoft MB7-842

L'équipe de Pass4Test se composant des experts dans le domaine IT. Toutes les Q&As sont examinées par nos experts. Les Q&As offertes par Pass4Test sont réputées pour sa grande couverture ( presque 100%) et sa haute précision. Vous pouvez trouver pas mal de sites similaires que Pass4Test, ces sites peut-être peuvent vous offrir aussi les guides d'études ou les services en ligne, mais on doit admettre que Pass4Test peut être la tête de ces nombreux sites. La mise à jour, la grande couverture des questions, la haute précision des réponses nous permettent à augmenter le taux à réussir le test Certification Microsoft MB7-842. Tous les points mentionnés ci-dessus seront une assurance 100% pour votre réussite de test Certification Microsoft MB7-842.

Participer au test Microsoft MB7-842 est un bon choix, parce que dans l'Industire IT, beaucoup de gens tirent un point de vue que le Certificat Microsoft MB7-842 symbole bien la professionnalité d'un travailleur dans cette industrie.

Le produit de Pass4Test est réputée par une bonne qualité et fiabilité. Vous pouvez télécharger le démo grantuit pour prendre un essai, nons avons la confiance que vous seriez satisfait. Vous n'aurez plus de raison à s'hésiter en face d'un aussi bon produit. Ajoutez notre Q&A au panier, vous aurez une meilleure préparation avant le test.

Code d'Examen: MB7-842
Nom d'Examen: Microsoft (NAV 2009 Trade & Inventory)
Questions et réponses: 89 Q&As

Pass4Test est un seul site web qui peut offrir toutes les documentations de test Microsoft MB7-842. Ce ne sera pas un problème à réussir le test Microsoft MB7-842 si vous préparez le test avec notre guide d'étude.

Pass4Test est un site particulier à offrir les guides de formation à propos de test certificat IT. La version plus nouvelle de Q&A Microsoft MB7-842 peut répondre sûrement une grande demande des candidats. Comme tout le monde le connait, le certificat Microsoft MB7-842 est un point important pendant l'interview dans les grandes entreprises IT. Ça peut expliquer un pourquoi ce test est si populaire. En même temps, Pass4Test est connu par tout le monde. Choisir le Pass4Test, choisir le succès. Votre argent sera tout rendu si malheureusement vous ne passe pas le test Microsoft MB7-842.

MB7-842 Démo gratuit à télécharger: http://www.pass4test.fr/MB7-842.html

NO.1 When setting up Item Tracking Codes, users can determine many settings that control data entry
requirements. What data entry requirements can be controlled through setups on the Item Tracking Code
Card?
Choose the 3 that apply.
A. Whether serial numbers or lot numbers are required for inbound transactions.
B. Whether serial numbers or lot numbers are required for outbound transactions.
C. Whether manual entry of warranty and expiration dates is required.
D. Whether auto selection of serial and lot numbers according to FEFO is activated.
Answer: ABC

Microsoft   MB7-842   certification MB7-842   certification MB7-842

NO.2 During sales order entry, an order processor selects an item, location, and quantity. What happens in
Microsoft Dynamics?NAV 2009 when an insufficient quantity of the item is at the specified location?
Choose the 2 that apply.
A. To prevent negative inventory quantities, the user is not able to save the line for the quantity specified.
B. A Warning Icon displays on the sales line, indicating that there is insufficient Quantity on Hand for the
item at the selected location.
C. The Sales Line Details Fact Box displays the quantity available for the item and selected location,
resulting in a negative number.
D. If the Stockout Warning check box is selected in Sales & Receivables Setup, a Stockout Warning
displays.
Answer: CD

Microsoft examen   MB7-842   MB7-842

NO.3 When you use Sales Orders and Sales Blanket Orders, the related documents are linked to one
another by their document numbers.
What options are available for establishing links between Sales Orders and Sales Blanket Orders?
Choose the 2 that apply.
A. When a Sales Order is entered directly, enter the Sales Order number in the Sales Order No. field on
the related Sales Blanket Order line.
B. When a Sales Order is created using the Make Order action, the Sales Blanket Order number and line
number are copied to the Sales line.
C. When a Sales Order is entered directly, enter the Sales Blanket Order number in the Sales Blanket
Order No. field on the related sales line.
D. When a Sales Order is entered directly, enter the Sales Blanket Order number in the Sales Blanket
Order No. field on the sales header.
Answer: BC

certification Microsoft   MB7-842   MB7-842   MB7-842

NO.4 You are the consultant on a Microsoft Dynamics?NAV 2009 implementation.
Your client wants to set up special pricing for their commercial customers. They have already set up a
Customer Price Group named COMMERCIAL.
What additional setup steps do you provide to your client to satisfy their pricing requirement?
Choose the 2 that apply.
A. Select the Use Customer Price Groups check box in Sales and Receivables Setup.
B. Assign the COMMERCIAL Customer Price Group on the Invoicing FastTab of the appropriate
Customer Cards.
C. Enter the percentage discount for the COMMERCIAL Customer Price Group in the Sales Prices page.
D. Add lines to the Sales Prices page for the COMMERCIAL Customer Price Group with the appropriate
Item, Unit of Measure, Quantity, and Unit Price.
Answer: BD

Microsoft   MB7-842 examen   certification MB7-842

NO.5 When you enter a Sales Quote and the customer decides not to place the order, what feature might you
select to store the Sales Quote for future reference?
A. Store Quote
B. Make Customer Copy
C. Archive Document
D. Save to History
Answer: C

Microsoft   MB7-842   MB7-842   certification MB7-842   certification MB7-842   MB7-842

NO.6 You are the consultant on a Microsoft Dynamics?NAV 2009 implementation.
Your client is completing tests of the sales order entry process; they enter a sales line quantity of 225 units.
According to an agreement with their customer, your client intends to post a partial shipment of 100 units
and an invoice of 50 units for the sales line.
Your client is unsure what amounts should display in the Quantity to Ship, Quantity Shipped, Quantity to
Invoice, and Quantity Invoiced fields prior to posting the sales line.
What amounts should display in the fields?
A. Quantity to Ship = 0; Quantity Shipped = 100; Quantity to Invoice = 0; Quantity Invoiced = 50
B. Quantity to Ship = 100; Quantity Shipped = 0; Quantity to Invoice = 50; Quantity Invoiced = 0
C. Quantity to Ship = 100; Quantity Shipped = 100; Quantity to Invoice = 50; Quantity Invoiced = 50
D. Quantity to Ship = 125; Quantity Shipped = 100; Quantity to Invoice = 175; Quantity Invoiced = 50
Answer: B

Microsoft   MB7-842 examen   MB7-842   MB7-842 examen   MB7-842 examen   MB7-842

NO.7 You are the consultant on a Microsoft Dynamics?NAV 2009 implementation.
You have completed a demonstration of posting shipments from Sales Orders. During the related
discussion, your client indicates that his or her current process has the Quantity to Ship field default to
blank and then requires the user to enter the actual quantity shipped. The client asks you how Microsoft
Dynamics NAV 2009 can meet this requirement.
What advice do you give your client?
A. Make a programming change to default the Quantity to Ship to blank on Sales Order lines.
B. Modify the current process so that users are required to only update lines where quantities are shipped
incomplete.
C. In the Default Quantity to Ship field on the Shipping FastTab of the Sales Order, select the option for
'blank'.
D. In the Default Quantity to Ship field on the Sales & Receivables Setup page, select the option for
'blank'.
Answer: D

Microsoft   MB7-842   MB7-842

NO.8 You are the consultant on a Microsoft Dynamics?NAV 2009 implementation.
You have determined through discussions that your client offers a customer an invoice discount of 2%
when the total invoice amount exceeds 20,000 LCY.
What setup do you advise your client to complete in Microsoft Dynamics NAV to accommodate the
discount?
Choose the 2 that apply.
A. On the Invoicing FastTab of the Customer Card, leave the default selection for the Invoice Discount
Code.
B. On the Cust. Invoice Discounts page for the Customer Card, enter a line with Currency Code equal to
blank, Minimum Amount of 20,000, and Discount% of 2.
C. On the Invoicing FastTab of the Customer Card, assign the relevant Customer Discount Group.
D. On the Invoicing FastTab of the Customer Card, select the Manually Calculate Invoice Discounts check
box.
Answer: AB

Microsoft examen   MB7-842 examen   MB7-842   MB7-842 examen

NO.9 Which batch job can be used to raise the unit price on all items by 10%?
A. Implement Price Change
B. Post Inventory Cost to G/L
C. Adjust Cost - Item Entries
D. Adjust Item Cost/Prices
Answer: D

certification Microsoft   certification MB7-842   MB7-842

NO.10 You are the consultant on a Microsoft Dynamics?NAV 2009 implementation.
As part of a review of business requirements, you are discussing purchase discounts with your client. You
determine that your client offers line discounts. In addition, your client posts the discount amounts to
separate general ledger accounts.
What setup is required to use line discounts and post them separately from purchases?
Choose the 2 that apply.
A. In the Payment Disc. fields on the Vendor Posting Groups page, select an account from the Chart of
Accounts.
B. In the Purchase Line Disc. Account field of the General Posting Setup page, select an account from the
Chart of Accounts.
C. On the General FastTab of the Purchases & Payables Setup page, select Line Discounts in the
Discount Posting field.
D. On the General FastTab of the Purchases & Payables Setup page, select the Post Line Discounts
check box.
Answer: BC

Microsoft   MB7-842   MB7-842 examen   MB7-842 examen   MB7-842 examen

La Q&A Microsoft MB7-842 de Pass4Test est liée bien avec le test réel de Microsoft MB7-842. La mise à jour gratuite est pour vous après vendre. Nous avons la capacité à vous assurer le succès de test Microsoft MB7-842 100%. Si malheureusement vous échouerez le test, votre argent sera tout rendu.