2013年12月31日星期二

L'avènement de la certification Microsoft pratique d'examen 070-561 questions et réponses

Selon les feedbacks les professionnels bien réputés dans l'Industrie IT, Pass4Test est un bon catalyseur de leurs succès. L'outil de formation offert par Pass4Test leur aide d'économiser le temps et l'argent, le plus important est qu'ils aient passé le test Microsoft 070-561 avec succès. Pass4Test est un fournissur fiable. Vous allez réaliser votre rêve avec l'aide de Pass4Test.

Vous serez impressionné par le service après vendre de Pass4Test, le service en ligne 24h et la mise à jour après vendre sont gratuit pour vous pendant un an, et aussi vous allez recevoir les informations plus nouvelles à propos de test Certification IT. Vous aurez un résultat imaginaire en coûtant un peu d'argent. D'ailleurs, vous pouvez économier beaucoup de temps et d'efforts avec l'aide de Pass4Test. C'est vraiment un bon marché de choisir le Pass4Test comme le guide de formation.

Dans cette époque glorieuse, l'industrie IT est devenue bien intense. C'est raisonnable que le test Microsoft 070-561 soit un des tests plus populaires. Il y a de plus en plus de gens qui veulent participer ce test, et la réussite de test Microsoft 070-561 est le rêve pour les professionnels ambitieux.

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

Le test Microsoft 070-561 est le premier pas pour promouvoir dans l'Industrie IT, mais aussi la seule rue ramenée au pic de succès. Le test Microsoft 070-561 joue un rôle très important dans cette industrie. Et aussi, Pass4Test est un chaînon inevitable pour réussir le test sans aucune doute.

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.
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   070-561 examen   070-561

NO.2 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

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

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.
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

certification Microsoft   070-561   070-561 examen   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 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

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

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   certification 070-561   070-561

NO.6 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

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

NO.7 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   certification 070-561   certification 070-561   certification 070-561   070-561 examen   certification 070-561

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.
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

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

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.
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   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.
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

certification Microsoft   certification 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 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

Microsoft   070-561   070-561 examen   070-561

NO.12 myConnection.Close();

NO.13 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

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

NO.14 }
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   certification 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   070-561 examen   070-561   certification 070-561   070-561 examen
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   070-561   070-561 examen   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

Microsoft   070-561   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 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 examen   070-561   certification 070-561   certification 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.
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 examen   certification 070-561

NO.17 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   070-561 examen   070-561   certification 070-561   070-561 examen

NO.18 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

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

NO.19 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   070-561   070-561 examen   070-561

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 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   certification 070-561   070-561   070-561 examen   070-561

NO.21 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

certification Microsoft   070-561   070-561   070-561

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.
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   070-561   070-561

NO.23 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   070-561   certification 070-561   070-561

NO.24 {

NO.25 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.26 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   certification 070-561   070-561 examen   070-561 examen

NO.27 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

Microsoft   070-561   070-561 examen   070-561

NO.28 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 examen   070-561   certification 070-561   070-561   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 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   070-561   070-561 examen   070-561 examen   certification 070-561

NO.30 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   certification 070-561   070-561

Si vous choisissez notre l'outil formation, Pass4Test peut vous assurer le succès 100% du test Microsoft 070-561. Votre argent sera tout rendu si vous échouez le test.

Pass4Test offre une formation sur Microsoft 070-646 matériaux examen

Les spécialiste profitant leurs expériences et connaissances font sortir les documentations particulière ciblées au test Microsoft 070-646 pour répondre une grande demande des candidats. Maintenant, la Q&A plus nouvelle, la version plus proche de test Microsoft 070-646 réel est lancée. C'est possible à réussir 100% avec le produit de Microsoft 070-646. Si malheureusement, vous ne passez pas le test, votre argent sera tout rendu. Vous pouvez télécharger le démo gratuit en Internet pour examiner la qualité de Q&A. N'hésitez plus d'ajouter le produit au panier, Pass4Test peut vous aider à réussir le rêve.

Les spécialistes d'expérience de Pass4Test ont fait une formation ciblée au test Microsoft 070-646. Cet outil de formation est convenable pour les candidats de test Microsoft 070-646. Pass4Test n'offre que les produits de qualité. Vous aurez une meilleure préparation à passer le test avec l'aide de Pass4Test.

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 070-646. Tous les points mentionnés ci-dessus seront une assurance 100% pour votre réussite de test Certification Microsoft 070-646.

Chaque expert dans l'équipe de Pass4Test ont son autorité dans cette industrie. Ils profitent ses expériences et ses connaissances professionnelles à préparer les documentations pour les candidats de test Certification IT. Les Q&As produites par Pass4Test ont une haute couverture des questions et une bonne précision des réponses qui vous permettent la réussie de test par une seule fois. D'ailleurs, un an de service gratuit en ligne après vendre est aussi disponible pour vous.

Code d'Examen: 070-646
Nom d'Examen: Microsoft (Windows Server 2008, Server Administrator)
Questions et réponses: 266 Q&As

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-646 est un bon l'examination de technique informatique. Pass4Test est un site d'offrir la formation particulière au test Microsoft 070-646.

Différentes façons peuvent atteindre le même but, ça dépend laquelle que vous prenez. Beaucoup de gens choisissent le test Microsoft 070-646 pour améliorer la vie et la carrière. Mais tous les gens ont déjà participé le test Microsoft 070-646, ils savent qu'il est difficile à réussir le test. Il y a quelques dépensent le temps et l'argent, mais ratent finalement.

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

NO.1 Your network consists of a single Active Directory site that includes two network segments. The network
segments connect by using a router that is RFC 1542 compliant.
You plan to use Windows Deployment Services (WDS) to deploy Windows Server 2008 R2 servers. All
new servers support PreBoot Execution Environment (PXE).
You need to design a deployment strategy to meet the following requirements:
- Support Windows Server?2008 R2
- Deploy the servers by using WDS in both network segments
- Minimize the number of servers used to support WDS
What should you include in your design?
A. Deploy one server. Install WDS and DHCP on the server. Configure the IP Helper tables on the router
between the network segments.
B. Deploy two servers. Install WDS and DHCP on both servers. Place one server on each of the network
segments. Configure both servers to support DHCP option 60.
C. Deploy two servers. Install WDS and DHCP on both servers. Place one server on each of the network
segments. Configure both servers to support DHCP option 252.
D. Deploy two servers. Install WDS and DHCP on one server. Install DHCP on the other server.
Place one server on each of the network segments. Configure both servers to support DHCP option 60.
Answer: A

Microsoft   070-646   070-646   certification 070-646   070-646 examen   certification 070-646

NO.2 Your network contains an Active Directory forest named contoso.com.
You plan to deploy a new child domain named branch.contoso.com. The child domain will contain two
domain controllers. Both domain controllers will have the DNS Server server role installed. All users and
computers in the branch office will be members of the branch.contoso.com domain.
You need to plan the DNS infrastructure for the child domain to meet the following requirements:
- Ensure resources in the root domain are accessible by fully qualified domain names.
- Ensure resources in the child domain are accessible by fully qualified domain names.
- Provide name resolution services in the event that a single server fails for a prolonged period of time.
- Automatically recognize when new DNS servers are added to or removed from the contoso.com
domain.
What should you include in your plan?
A. On both domain controllers, add a conditional forwarder for contoso.com and create a standard
primary zone for branch.contoso.com.
B. On both domain controllers, modify the root hints to include the domain controllers for contoso.com. On
one domain controller, create an Active Directoryintegrated zone for branch.contoso.com.
C. On one domain controller create an Active Directoryintegrated zone for branch.contoso.com and
create an Active Directoryintegrated stub zone for contoso.com.
D. On one domain controller, create a standard primary zone for contoso.com. On the other domain
controller, create a standard secondary zone for contoso.com.
Answer: C

Microsoft   070-646   070-646 examen

NO.3 Testlet: Blue Yonder Airlines
You need to recommend an administrative solution for the local support technicians in the satellite offices.
The solution must meet the company's security requirements.
What should you include in the recommendation?
BYA1 (exhibit):
BYA2 (exhibit):
BYA3 (exhibit):
A. Active Directory delegation
B. Administrator Role Separation
C. managed service accounts
D. Restricted Groups
Answer: B

Microsoft examen   070-646   certification 070-646   070-646

NO.4 Your company has 250 branch offices. Your network contains an Active Directory domain. The domain
controllers run Windows Server 2008 R2. You plan to deploy Readonly Domain Controllers (RODCs) in
the branch offices.
You need to plan the deployment of the RODCs to meet the following requirements:
- Build each RODC at the designated branch office.
- Ensure that the RODC installation source files do not contain cached secrets.
- Minimize the bandwidth used during the initial synchronization of Active Directory Domain Services
(AD?DS).
What should you include in your plan?
A. Use Windows Server Backup to perform a full backup of an existing domain controller. Use the backup
to build the new RODCs.
B. Use Windows Server Backup to perform a custom backup of the critical volumes of an existing domain
controller. Use the backup to build the new RODCs.
C. Create a DFS namespace that contains the Active Directory database from one of the existing domain
controllers. Build the RODCs by using an answer file.
D. Create an RODC installation media. Build the RODCs from the RODC installation media.
Answer: D

certification Microsoft   070-646   070-646 examen   070-646 examen

NO.5 Your network consists of a single Active Directory domain. The functional level of the domain is
Windows Server 2008 R2. The domain contains 200 Windows Server 2008 R2 servers.
You need to plan a monitoring solution that meets the following requirements:
- Sends a notification by email to the administrator if an application error occurs on any of the servers
- Uses the minimum amount of administrative effort
What should you include in your plan?
A. On one server, create event subscriptions for each server. On the server, attach tasks to the application
error events.
B. On one server, create an Event Trace Sessions Data Collector Set. On all servers, create a System
Performance Data Collector Set.
C. On all servers, create event subscriptions for one server. On all servers, attach a task for the
application error events.
D. On all servers, create a System Performance Data Collector Set. On one server, configure the report
settings for the new Data Collector set.
Answer: A

Microsoft   070-646   070-646   070-646 examen

NO.6 You need to recommend a Windows Server 2008 R2 server configuration that meets the following
requirements:
- Supports the installation of Microsoft SQL Server 2008
- Provides redundancy for SQL services if a single server fails
What should you recommend?
A. Install a Server Core installation of Windows Server 2008 R2 Enterprise on two servers. Configure the
servers in a failover cluster.
B. Install a full installation of Windows Server 2008 R2 Standard on two servers. Configure Network Load
Balancing on the two servers.
C. Install a full installation of Windows Server 2008 R2 Enterprise on two servers. Configure Network
Load Balancing on the two servers.
D. Install a full installation of Windows Server 2008 R2 Enterprise on two servers. Configure the servers in
a failover cluster.
Answer: D

Microsoft examen   070-646   certification 070-646   070-646 examen   certification 070-646

NO.7 Your network contains a single Active Directory site.
You plan to deploy 1,000 new computers that will run Windows 7 Enterprise. The new computers have
Preboot Execution Environment (PXE) network adapters.
You need to plan the deployment of the new computers to meet the following requirements:
- Support 50 simultaneous installations of Windows 7
- Minimize the impact of network operations during the deployment of the new computers
- Minimize the amount of time required to install Windows 7 on the new computers
What should you include in your plan?
A. Deploy the Windows Deployment Services (WDS) server role. Configure the IP Helper tables on all
routers.
B. Deploy the Windows Deployment Services (WDS) server role. Configure each WDS server by using
native mode.
C. Deploy the Windows Deployment Services (WDS) server role and the Transport Server feature.
Configure the Transport Server to use a custom network profile.
D. Deploy the Windows Deployment Services (WDS) server role and the Transport Server feature.
Configure the Transport Server to use a static multicast address range.
Answer: D

Microsoft examen   certification 070-646   070-646   070-646 examen   070-646 examen

NO.8 Your network consists of a single Active Directory domain. The network includes a branch office
named Branch1. Branch1 contains 50 member servers that run Windows Server 2008 R2. An
organizational unit (OU) named Branch1Servers contains the computer objects for the servers in Branch1.
A global group named Branch1admins contains the user accounts for the administrators. Administrators
maintain all member servers in Branch1. You need to recommend a solution that allows the members of
Branch1admins group to perform the following tasks on the Branch1 member servers.
- Stop and start services
- Change registry settings
What should you recommend?
A. Add the Branch1admins group to the Power Users local group on each server in Branch1.
B. Add the Branch1admins group to the Administrators local group on each server in Branch1.
C. Assign the Branch1admins group change permissions to the Branch1Servers OU and to all child
objects.
D. Assign the Branch1admins group Full Control permissions on the Branch1Servers OU and to all child
objects.
Answer: B

Microsoft examen   070-646   070-646 examen   certification 070-646

NO.9 Your network consists of a single Active Directory domain. The network contains two Windows Server
2008 R2 computers named Server1 and Server2. The company has two identical print devices. You plan
to deploy print services.
You need to plan a print services infrastructure to meet the following requirements:
- Manage the print queue from a central location.
- Make the print services available, even if one of the print devices fails.
What should you include in your plan?
A. Install and share a printer on Server1. Enable printer pooling.
B. Install the Remote Desktop Services server role on both servers. Configure Remote Desktop
Connection Broker (RD Connection Broker).
C. Install and share a printer on Server1. Install and share a printer on Server2. Use Print Management to
install the printers on the client computers.
D. Add Server1 and Server2 to a Network Load Balancing cluster. Install a printer on each node of the
cluster.
Answer: A

Microsoft examen   070-646 examen   070-646   070-646 examen   certification 070-646   070-646 examen

NO.10 Your network contains two servers that run the Server Core installation of Windows Server 2008 R2.
The two servers are part of a Network Load Balancing cluster.
The cluster hosts a Web site. Administrators use client computers that run Windows 7.
You need to recommend a strategy that allows the administrators to remotely manage the Network Load
Balancing cluster. Your strategy must support automation.
What should you recommend?
A. On the servers, enable Windows Remote Management (WinRM).
B. On the servers, add the administrators to the Remote Desktop Users group.
C. On the Windows 7 client computers, enable Windows Remote Management (WinRM).
D. On the Windows 7 client computers, add the administrators to the Remote Desktop Users group.
Answer: A

certification Microsoft   070-646   070-646 examen

NO.11 Your network is configured as shown in the following diagram.
You deploy an enterprise certification authority (CA) on the internal network. You also deploy a Microsoft
Online Responder on the internal network. You need to recommend a secure method for Internet users to
verify the validity of individual certificates.
The solution must minimize network bandwidth.
What should you recommend?
A. Deploy a subordinate CA on the perimeter network.
B. Install a standalone CA and the Network Device Enrollment Service (NDES) on a server on the
perimeter network.
C. Install a Network Policy Server (NPS) on a server on the perimeter network. Redirect authentication
requests to a server on the internal network.
D. Install Microsoft Internet Information Services (IIS) on a server on the perimeter network.
Configure IIS to redirect requests to the Online Responder on the internal network.
Answer: D

Microsoft   certification 070-646   certification 070-646

NO.12 Your network consists of a single Active Directory domain. The network contains five Windows Server
2008 R2 servers that host Web applications. You need to plan a remote management strategy to manage
the Web servers.
Your plan must meet the following requirements:
- Allow Web developers to configure features on the Web sites
- Prevent Web developers from having full administrative rights on the Web servers
What should you include in your plan?
A. Configure request filtering on each Web server.
B. Configure authorization rules for Web developers on each Web server.
C. Configure the security settings in Internet Explorer for all Web developers by using a Group Policy.
D. Add the Web developers to the Account Operators group in the domain.
Answer: B

Microsoft examen   070-646 examen   070-646   certification 070-646   070-646

NO.13 Your company has a main office and a branch office. You plan to deploy a Readonly Domain Controller
(RODC) in the branch office.
You need to plan a strategy to manage the RODC. Your plan must meet the following requirements:
- Allow branch office support technicians to maintain drivers and disks on the RODC
- Prevent branch office support technicians from managing domain user accounts
What should you include in your plan?
A. Configure the RODC for Administrator Role Separation.
B. Configure the RODC to replicate the password for the branch office support technicians.
C. Set NTFS permissions on the Active Directory database to Read & Execute for the branch office
support technicians.
D. Set NTFS permissions on the Active Directory database to Deny Full Control for the branch office
support technicians.
Answer: A

certification Microsoft   070-646   070-646 examen

NO.14 Your network consists of a single Active Directory domain. All domain controllers run Windows Server
2008 R2.
You need to implement a Certificate Services solution that meets the following requirements:
- Automates the distribution of certificates for internal users
- Ensures that the network's certificate infrastructure is as secure as possible
- Gives external users access to resources that use certificate based authentication
What should you do?
A. Deploy an online standalone root certification authority (CA). Deploy an offline standalone root CA.
B. Deploy an offline enterprise root certification authority (CA). Deploy an offline enterprise subordinate
CA.
C. Deploy an offline standalone root certification authority (CA). Deploy an online enterprise subordinate
CA. Deploy an online standalone subordinate CA.
D. Deploy an online standalone root certification authority (CA). Deploy an online enterprise subordinate
CA. Deploy an online standalone subordinate CA.
Answer: C

Microsoft   070-646   070-646 examen

NO.15 Your network consists of a single Active Directory domain. Your main office has an Internet connection.
Your company plans to open a branch office. The branch office will connect to the main office by using a
WAN link. The WAN link will have limited bandwidth. The branch office will not have access to the Internet.
The branch office will contain 30 Windows Server 2008 R2 servers.
You need to plan the deployment of the servers in the branch office.
The deployment must meet the following requirements:
- Installations must be automated.
- Computers must be automatically activated.
- Network traffic between the offices must be minimized.
What should you include in your plan.?
A. In the branch office, implement Key Management Service (KMS), a DHCP server, and Windows
Deployment Services (WDS).
B. Use Multiple Activation Key (MAK) Independent Activation on the servers. In the main office, implement
a DHCP server and Windows Deployment Services (WDS).
C. In the main office, implement Windows Deployment Services (WDS). In the branch office, implement a
DHCP server and implement the Key Management Service (KMS).
D. Use Multiple Activation Key (MAK) Independent Activation on the servers. In the main office,
implement a DHCP server. In the branch office, implement Windows Deployment Services (WDS).
Answer: A

certification Microsoft   070-646   070-646 examen   certification 070-646   070-646 examen

NO.16 Your network consists of a single Active Directory domain. The network is located on the 172.16.0.0/23
subnet.
The company hires temporary employees. You provide user accounts and computers to the temporary
employees. The temporary employees receive computers that are outside the Active Directory domain.
The temporary employees use their computers to connect to the network by using wired connections and
wireless connections.
The company's security policy specifies that the computers connected to the network must have the latest
updates for the operating system.
You need to plan the network's security so that it complies with the company's security policy.
What should you include in your plan?
A. Implement a Network Access Protection (NAP) strategy for the 172.16.0.0/23 subnet.
B. Create an extranet domain within the same forest. Migrate the temporary employees' user accounts to
the extranet domain. Install the necessary domain resources on the 172.16.0.0/23 subnet.
C. Move the temporary employees' user accounts to a new organizational unit (OU). Create a new Group
Policy object (GPO) that uses an intranet Microsoft Update server. Link the new GPO to the new OU.
D. Create a new subnet in a perimeter network. Relocate the wireless access point to the perimeter
network. Require authentication through a VPN server before allowing access to the internal resources.
Answer: A

certification Microsoft   070-646   070-646   070-646

NO.17 Your network contains a Webbased application that runs on Windows Server 2003. You plan to migrate
the Webbased application to Windows Server 2008 R2. You need to recommend a server configuration to
support the Webbased application.
The server configuration must meet the following requirements:
- Ensure that the application is available to all users if a single server fails
- Support the installation of .NET applications
- Minimize software costs
What should you recommend?
A. Install the Server Core installation of Windows Server 2008 R2 Standard on two servers.
Configure the servers in a Network Load Balancing cluster.
B. Install the full installation of Windows Server 2008 R2 Web on two servers. Configure the servers in a
Network Load Balancing cluster.
C. Install the full installation of Windows Server 2008 R2 Enterprise on two servers. Configure the servers
in a failover cluster.
D. Install the full installation of Windows Server 2008 R2 Datacenter on two servers. Configure the
servers in a failover cluster.
Answer: B

Microsoft examen   070-646   certification 070-646   certification 070-646   certification 070-646

NO.18 Your network contains two DHCP servers. The DHCP servers are named DHCP1 and DHCP2. The
internal network contains 1,000 DHCP client computers that are located on a single subnet. A router
separates the internal network from the Internet. The router has a single IP address on the internal
interface.
DHCP1 has the following scope information:
- Starting IP address: 172.16.0.1
- Ending IP address: 172.16.7.255
- Subnet mask: 255.255.240.0
You need to provide a faulttolerant DHCP infrastructure that supports the client computers on the internal
network. In the event that a DHCP server fails, all client computers must be able to obtain a valid IP
address.
How should you configure DHCP2?
A. Create a scope for the subnet 172.16.0.0/20. Configure the scope to use a starting IP address of
172.16.8.1 and an ending IP address of 172.16.15.254.
B. Create a scope for the subnet 172.16.0.0/21. Configure the scope to use a starting IP address of
172.16.0.1 and an ending IP address of 172.16.15.254.
C. Create a scope for the subnet 172.16.8.0/21. Configure the scope to use a starting IP address of
172.16.8.1 and an ending IP address of 172.16.10.254.
D. Create a scope for the subnet 172.17.0.0/16. Configure the scope to use a starting IP address of
172.17.0.1 and an ending IP address of 172.17.255.254.
Answer: A

certification Microsoft   070-646   070-646

NO.19 Your company has a main office and two branch offices. The main office is located in London. The
branch offices are located in New York and Paris.
Your network consists of an Active Directory forest that contains three domains named contoso.com,
paris.contoso.com, and newyork.contoso.com. All domain controllers run Windows Server 2008 R2 and
have the DNS Server server role installed.
The domain controllers for contoso.com are located in the London office. The domain controllers for
paris.contoso.com are located in the Paris office. The domain controllers for newyork.contoso.com are
located in the New York office.
A domain controller in the contoso.com domain has a standard primary DNS zone for contoso.com. A
domain controller in the paris.contoso.com domain has a standard primary DNS zone for
paris.contoso.com. A domain controller in the newyork.contoso.com domain has a standard primary DNS
zone for newyork.contoso.com.
You need to plan a name resolution strategy for the Paris office that meets the following requirements:
- If a WAN link fails, clients must be able to resolve hostnames for contoso.com.
- If a WAN link fails, clients must be able to resolve hostnames for newyork.contoso.com.
- The DNS servers in Paris must be updated when new authoritative DNS servers are added to
newyork.contoso.com.
What should you include in your plan?
A. Configure conditional forwarding for contoso.com. Configure conditional forwarding for
newyork.contoso.com.
B. Create a standard secondary zone for contoso.com. Create a standard secondary zone for
newyork.contoso.com.
C. Convert the standard zone into an Active Directoryintegrated zone. Add all DNS servers in the forest to
the root hints list.
D. Create an Active Directoryintegrated stub zone for contoso.com. Create an Active Directoryintegrated
stub zone for newyork.contoso.com.
Answer: B

Microsoft   certification 070-646   070-646 examen   070-646   070-646 examen

NO.20 Your company purchases 15 new 64bit servers as follows:
- Five of the servers have a single processor.
- Five of the servers have a single dual core processor.
- Five of the servers have two quad core processors.
You plan to deploy Windows Server 2008 R2 on the new servers by using Windows Deployment Services
(WDS). You need to recommend a WDS install image strategy that meets the following requirements:
- Minimizes the number of install images
- Supports the deployment of Windows Server 2008 R2
What should you recommend?
A. one install image file that contains three install images
B. one install image file that contains a single install image
C. two install image files that each contain a single install image
D. three install image files that each contain a single install image
Answer: B

Microsoft   070-646   certification 070-646

Pour l'instant, vous pouvez télécharger le démo gratuit de Q&A Microsoft 070-646 dans Pass4Test pour se former avant le test Microsoft 070-646.

Le plus récent matériel de formation Microsoft 070-582

Le test Certificat Microsoft 070-582 est bien populaire pendant les professionnels IT. Ce Certificat est une bonne preuve de connaissances et techniques professionnelles. C'est une bonne affaire d'acheter une Q&A de qualité coûtant un peu d'argent. Le produit de Pass4Test vise au test Certification Microsoft 070-582. Vous allez prendre toutes essences du test Microsoft 070-582 dans une courte terme.

L'équipe de Pass4Test autorisée offre sans arrêt les bonnes resources aux candidats de test Certification Microsoft 070-582. Les documentations particulièrement visée au test Microsoft 070-582 aide beaucoup de candidats. La Q&A de la version plus nouvelle est lancée maintenant. Vous pouvez télécharger le démo gratuit en Internet. Généralement, vous pouvez réussir le test 100% avec l'aide de Pass4Test, c'est un fait preuvé par les professionnels réputés IT. Ajoutez le produit au panier, vous êtes l'ensuite à réussir le test Microsoft 070-582.

Code d'Examen: 070-582
Nom d'Examen: Microsoft (Windows Embedded Standard 7 for Developers)
Questions et réponses: 74 Q&As

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

Pass4Test est un site qui peut réalise le rêve de beaucoup de professionnels. Pass4Test peut vous donner un coup de main pour réussir le test Certification Microsoft 070-582 via son guide d'étude. Est-ce que vous vous souciez de test Certification Microsoft 070-582? Est-ce que vous êtes en cours de penser à chercher quelques Q&As à vous aider? Pass4Test peut résoudre ces problèmes. Les documentations offertes par Pass4Test peuvent vous provider une préparation avant le test plus efficace. Le test de simulation de Pass4Test est presque le même que le test réel. Étudier avec le guide d'étude de Pass4Test, vous pouvez passer le test avec une haute note.

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

NO.1 You are developing a Windows Embedded Standard 7 image that will be deployed to 5,000 devices.
You have a third-party application. You need to ensure that the application is included in the image. What
should you do?
A. In Image Configuration Editor (ICE), add a synchronous command to install the application to the
oobeSystem pass.Deploy the image to a masterdevice.Capture the final image.
B. In Image Configuration Editor (ICE), add a synchronous command to install the application to the
auditUser pass.Deploy the image to a master device.Reseal and capture the final image.
C.Deploy the image to a master device.Start the master device.lnstall the application in the master
device.Capture the final image.
D. Deploy the image to a master device.Run the master device in Audit mode.lnstall the application in the
master device.Reseal and capture the final image.
Answer: D

Microsoft examen   070-582   070-582   certification 070-582

NO.2 You are developing a Windows Embedded Standard 7 image for a headless device. The device is
connected to a corporate network. You need to access the command line of the device from a remote
computer. Which technology should you use?
A. FTP Server
B. Telnet Server
C. Remote Access Service (RAS)
D. Internet Information Server (IIS)
Answer: B

certification Microsoft   070-582   070-582   070-582   070-582

NO.3 You are developing a Windows Embedded Standard 7 answer file for an image in Image Configuration
Editor
(ICE). Your image includes a third-party application. You need to add the application shortcut to the menu
list of most frequently used
programs. To which setting in ICE should you add the link information for Windows Embedded Core?
A. Shell-Setup\TaskBarLinks
B. Shell-Setup\StartPanelLinks
C. Shell-Setup\ClientApplications
D. Shell-Setup\OEMWelcomeCenterLinks
Answer: B

Microsoft   070-582 examen   070-582   certification 070-582   certification 070-582

NO.4 You are developing a Windows Embedded Standard 7 image by using Image Configuration Editor (ICE).
You have an installation file for an application. You need to ensure that the application is deployed
automatically when the image is deployed. What should you do?
A. Create a configuration set based on the answer file.
B. Add the installation file shortcut to the Autostart folder.
C. Add a value for the installation file to the HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
registry key.
D. Insert a synchronous command to the answer file to run the installation file.
Answer:D

certification Microsoft   070-582 examen   070-582   070-582 examen   070-582 examen

NO.5 You have a Windows Embedded Standard 7 image for a target device. The image includes Enhanced
Write Filter (EWF) along with the Hibernate Once Resume Many (HORM) package. You need to ensure
that you are able to modify the hibernate file.
What should you do first?
A. Configure the EWF mode to the EWF RAM mode.
B. Configure the EWF mode to the EWF RAM Reg mode.
C. Use EWFMgr.exe to disable EWF and restart the device.
D. Use EWFMgr.exe to deactivate HORM and restart the device.
Answer: D

Microsoft   certification 070-582   070-582   070-582

NO.6 You are creating a Windows Embedded Standard 7 image for a target device. You use Image
Configuration Editor
(ICE) to configure the answer file. You need to ensure that when the device is turned on, user interaction
is not required until the desktop
appears. Which setting of EmbeddedEdition_x86 should you configure?
A. AutoLogon
B. DefaultConsent
C. MachinePassword
D. Distribution Share\Credentials
Answer: A

Microsoft   070-582   070-582   070-582   070-582   070-582

NO.7 You are developing a Windows Embedded Standard 7 image. The target device has no display. You
deploy an application that displays custom dialog boxes. You need to configure the image to automatically
provide an answer to each custom dialog box. What should you do?
A. Add and configure the Dialog Box Filter package.
B. Configure the Windows Embedded Core component.
C. Add and configure the Message Box Default Reply component.
D. Add and configure the Shell Controls and Ul Support Functions package.
Answer: A

Microsoft examen   070-582   070-582   070-582   070-582 examen

NO.8 You are developing a Windows Embedded Standard 7 image for a customer. Only applications signed
by the customer can be installed and executed on the device. You need to prevent the installation and
execution of unauthorized applications on the device.
What should you do?
A. Use BitLocker.
B. Use AppLocker.
C. Use Windows Defender.
D. Use Windows Security Essential.
Answer: B

certification Microsoft   070-582   070-582 examen   certification 070-582

NO.9 You are creating a Windows Embedded Standard 7 image for a target device. You use Image
Configuration Editor (ICE) to configure the
answer file for the image. You need to ensure that users will not be prompted for administrator credentials
by User Account Control (UAC)
on the device. What should you do?
A. Insert a synchronous command during the WindowsPE pass.
B. Configure the EnableLUA setting of EmbeddedEdition_x86 to False.
C. Configure the MachinePassword setting of EmbeddedEdition_x86 by using the password of the
administrator.
D. Configure the ldentification\Credentials settings of EmbeddedEdition_x86 by using the user name and
password of the administrator.
Answer: B

certification Microsoft   070-582   070-582   070-582 examen

NO.10 You are developing a Windows Embedded Standard 7 device. You have a custom application that
saves data to a specific folder named Folderl. You need to ensure that only Folderl can be modified. What
should you do?
A. Configure BitLocker.
B. Configure File-Based Write Filter (FBWF) along with Folderl as an exception.
C. Configure Enhanced Write Filter (EWF) and manually commit the changes for Folderl.
D. Configure Enhanced Write Filter (EWF) along with the Hibernate Once Resume Many (HORM)
package.
Answer: B

certification Microsoft   certification 070-582   certification 070-582

Le test simulation offert par Pass4Test est bien proche du test réel. Vous pouvez apprendre tous essences d'un test réel à courte terme avec l'aide de Pass4Test. Pass4Test peut vous assurer le succès 100% de test Microsoft 070-582.

Le plus récent matériel de formation Microsoft 70-667

Si vous vous inscriez le test Microsoft 70-667, vous devez choisir une bonne Q&A. Le test Microsoft 70-667 est un test Certification très important dans l'Industrie IT. C'est essentielle d'une bonne préparation avant le test.

Pass4Test possède une grande équipe composée des experts IT qui travaillent dur avec leurs riches expériences et connaissances pour produire un bon outil de formation. Selon les anciens test, le test simulation de Pass4Test est bien lié avec le test réel. Pass4Test peut vous assurer à réussir le test. Maintenant vous ajoutez votre outil de formation au panier, et votre rêve réalisera bien tôt.

Ê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.

Le test Microsoft 70-667 est l'un très improtant dans tous les tests de Certification Microsoft, mais c'est toujours difficile à obtenir ce Certificat. La présence de Pass4Test est pour soulager les candidats. L'équipe de Pass4Test peut vous aider à économiser le temps et l'éffort. Vous pouvez passer le test sans aucune doute sous l'aide de notre Q&A.

Code d'Examen: 70-667
Nom d'Examen: Microsoft (TS: Microsoft SharePoint Server 2010, Configuring )
Questions et réponses: 249 Q&As

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

NO.1 You have a deployment of Microsoft Office SharePoint Server 2007 Service Pack 2 (SP2). The
deployment includes the following servers:
A. One Microsoft SQL Server 2005 server named Server1
B. One SharePoint server named Server2
All servers run the 64-bit edition of Windows Server 2003 Service Pack 2 (SP2). You need to ensure that
you can perform an in-place upgrade of SharePoint Server 2010 Service Pack 1 (SP1).
What should you do?
A. On Server2, upgrade to the 64-bit edition of Windows Server 2008.
B. On Server1, upgrade SQL Server 2005 to SQL Server 2008.
C. On Server1, upgrade to the 64-bit edition of Windows Server 2008
D. On Server2, install Windows Server 2003 Service Pack 3 (SP3).
Answer: A

Microsoft   70-667 examen   70-667 examen

NO.2 You configure a SharePoint Server 2010 Service Pack 1 (SP1) server farm. You need to perform
backup and restore of a site collection and its content database by using Windows PowerShell. Which
command should you run to back up a web application?
A. Backup-SPSite http://localhost -Path \\FileServer_Name\SharePointBackupFolder\SiteBackup. bak
B. Restore-SPFarm -Directory \\FileServer_Name\ share\site_name.bak -RestoreMethod Overwrite
-ConfigurationOnly
C. Backup-SPFarm -Directory \\FileServer_Name\SharePointBackupFolder -BackupMethod Full
D. Restore-SPFarm -Directory \\FileServer_Name\share\site_name.bak -RestoreMethod Overwrite Item
"Farm\Microsoft SharePoint Foundation Web Application\AdventureWorks"
E. Backup-SPFarm -Directory \\FileServer_Name\SharePointBackupFolder -Item "Farm\Microsoft
SharePoint Foundation Web Application\AdventureWorks" -BackupMethodFull
F. Backup-SPFarm -Directory \\FileServer_Name\SharePointBackupFolder -BackupMethod Full Item
WSS_AdventureWorks
G. Restore-SPFarm -Directory \\FileServer_Name\share\site_name.bak -RestoreMethod Overwrite Item
WSS_AdventureWorks
H. Restore-SPSite http://localhost -Path \\FileServer_Name\SharePointBackupFolder SiteBackup. bak
-Force
Answer: F

Microsoft   70-667   70-667 examen   certification 70-667

NO.3 Your company network includes a SharePoint Server 2010 Service Pack 1 (SP1) server. You create an
http://www.contoso.com web application that has multiple site collections. The site collections have a
large amount of content residing across lists. You deploy custom web parts that query the list items
through the SharePoint object model. You need to ensure that the custom code that queries the list items
and default list views remains within 2,500 items for each request.
What should you do?
A. Set the value of List View Threshold to 2500. Set the value of Object Model Override to No.
B. Set the value of List View Lookup Threshold to 2500. Set the value of Object Model Override to No.
C. Set the value of HTTP Request Monitoring and Throttling to No. Set the value of Daily Time Windows
for Large Queries to 0 hours.
D. Set the value of the PropertySize attribute to 2500 on the WebPartLimits node in the web.config file.
Answer: A

certification Microsoft   70-667   70-667 examen

NO.4 You have a SharePoint Server 2010 Service Pack 1 (SP1) server farm. The farm contains a site
collection named Intranet.
You upload a custom solution to the Solution Gallery of Intranet. You discover that you cannot activate the
custom solution. You need to ensure that you can activate the solution in Intranet.
What should you do?
A. From Central Administration, start the Application Registry Service.
B. From Windows PowerShell, run Start-Service -Name SPUserCodeV4.
C. From Central Administration, create a new service application.
D. From Central Administration, start the Microsoft SharePoint Foundation Sandboxed Code Service.
E. From a command prompt, run stsadm.exe -o execadmsvcjobs
F. From Windows PowerShell, run Start-Service -Name SPAdminV4
G. From Central Administration, activate the Global Web Parts feature.
H. From Windows PowerShell, run New-SPAccessServiceApplication -Name SandboxSolution
Confirm:$true.
Answer: B

Microsoft examen   70-667   70-667 examen   certification 70-667

NO.5 You have a SharePoint Server 2010 Service Pack 1 (SP1) server farm. The farm contains two web
applications named WebApp1 and WebApp2.
WebApp1 contains one site collection. The site collection contains 300 sites.
WebApp2 is used to host personal sites.
You need to prevent the site collection in WebApp1 from containing more than 100 GB of data. Which
Windows PowerShell cmdlet should you use?( Note: This quesiton is part of a series of questions that use
the same set of answer choices. Each answer choice may be used once, more than once, or not at all.)
A. Set-SPUsageService
B. Set-SPTimerJob
C. Enable-SPTimerJob
D. New-SPWebApplication
E. Set-SPDiagnosticConfig
F. Enable-SPHealthAnalysisRule
G. Remove-SPUsageApplication
H. Set-SPAlternateURL
I. New-SPWebApplicationExtension
J. Set-SPSite
K. Set-SPWeb
L. Set-SPContentDatabase
M. Set-SPLogLevel
N. Install-SPApplicationContent
Answer: J

Microsoft examen   70-667   70-667 examen

NO.6 You have a SharePoint Server 2010 Service Pack 1 (SP1) server farm. The farm contains a web
application named WebApp1. WebApp1 contains one site collection named Portal.
WebApp1 is configured to use NTLM authentication.
You need to implement forms-based authentication for Portal. What should you do? (Each correct answer
part of the solution. Choose all that apply.)
A. Modify the Client.config file.
B. Modify the Web.config file.
C. Create a managed metadata service connection.
D. Extend WebApp1.
E. Create a new web application.
Answer: BD

Microsoft examen   70-667   certification 70-667   70-667   certification 70-667

NO.7 You are piloting the deployment of a SharePoint Server 2010 Service Pack 1 (SP1) server farm named
Farm1. Farm1 contains two front-end Web servers and an application server. You create a new site
collection that contains five sites. You need to simulate 200 user connections to the sites. The solution
must use the minimum amount of administrative effort.
Which tool should use?
A. Stsadm
B. Microsoft SharePoint Designer
C. Test-Connection
D. Microsoft Visual Studio
Answer: D

Microsoft   certification 70-667   70-667

NO.8 You have a SharePoint Server 2010 Service Pack 1 (SP1) server farm.
The List View Threshold property is set to 7,500.
You need to ensure that developers can retrieve a maximum of 7,500 items from a list.
What should you do?
A. Create an information management policy.
B. Enable HTTP request throttling
C. Modify the Allow Object Model Override setting.
D. Modify the value of the List View Lookup Threshold
Answer: C

Microsoft   70-667 examen   70-667

NO.9 ( Note: This quesiton is part of a series of questions that use the same set of answer choices. Each
answer choice may be used once, more than once, or not at all.)
You have a SharePoint Server 2010 Service Pack 1 (SP1) server farm. The farm contains two web
applications named WebApp1 and WebApp2. WebApp1 contains one site collection. The site collection
contains 300 sites.
WebApp2 is used to host personal sites.
You need to ensure that you receive a notification when more than 400 personal sites are created.
Which Windows PowerShell cmdlet should you use?
A. Set-SPContentDatabase
B. New-SPWebApplication
C. Set-SPTimerJob
D. Set-SPWeb
E. Set-SPLogLevel
F. Set-SPDiagnosticConfig
G. Enable-SPTimerJob
H. Set-SPUsageService
I. Remove-SPUsageApplication
J. Set-SPAlternateURL
K. New-SPWebApplicationExtension
L. Enable-SPHealthAnalysisRule
M. Set-SPSite
N. Install-SPApplicationContent
Answer: A

Microsoft examen   certification 70-667   70-667 examen   70-667   70-667

NO.10 You have a SharePoint Server 2010 Service Pack 1 (SP1) server farm. You have a custom application
that queries a list, and then generates a report every night at 01:00. You discover that the report cannot be
executed due to the list view threshold. You need to ensure that the report is executed successfully. What
should you modify from Central Administration?
A. the Resource Throttling settings
B. the schedule for the Microsoft SharePoint Foundation Usage Data Processingjob
C. the User Solution Management settings
D. the schedule for the Solution Daily Resource Usage Update job
Answer: A

Microsoft   70-667 examen   70-667 examen   certification 70-667

NO.11 Your company network includes a SharePoint Server 2010 Service Pack 1 (SP1) server.
A sandbox solution repeatedly fails.
You need to prevent the solution from running. You also need to ensure that the resolution affects no other
sandboxed solutions in the site collection.
What should you do.?
A. From the Site Collection Quotas and Locks page, raise the resource quota that is applied to the site
collection
B. From Microsoft SQL Server Management Studio, set the status of the site collection content database
to read-only.
C. From the SharePoint 2010 Management Shell, run the Remove-SPUserSolution PowerShell cmdlet.
D. From Central Administration, add the solution as a Blocked Solution on the Sandboxed Solution
Management page.
Answer: D

Microsoft   70-667   70-667 examen   certification 70-667   70-667 examen

NO.12 You configure a SharePoint Server 2010 Service Pack 1 (SP1) server farm. You have a site collection
named http://www.contoso.com based on the Team Site template that has anonymous access enabled.
You need to ensure that anonymous users cannot view application-level pages.
What should you do?
A. From the SharePoint 2010 Management Shell, run the following cmdlet:
Disable-SPFeatureDocumentSet -Url "http://www.contoso.com"
B. Add User1 to the Site Owners group.
C. From the SharePoint 2010 Management Shell, run the following cmdlet:
Disable-SPFeatureViewFormPagesLockdown -Url "http://www.contoso.com"
D. From the SharePoint 2010 Management Shell, run the following cmdlet:
Enable-SPFeatureViewFormPagesLockdown -Url http://www.contoso.com
E. From the SharePoint 2010 Management Shell, run the following script:
$spWeb = Get-SPWeb "http://www.contoso.com/sales" $spWeb.BreakRoleInheritance($false)
$spWeb.Dispose( )
F. From the SharePoint 2010 Management Shell, run the following script:
$spWeb = Get-SPWeb "http://www.contoso.com/sales" $spWeb.BreakRoleInheritance($true)
$spWeb.Dispose( )
G. Add User1 as a site collection administrator.
H. GrantDesign permissions to the Sales SharePoint user group.
Answer: D

Microsoft   70-667 examen   70-667   certification 70-667

NO.13 You have a Microsoft Office SharePoint Server 2007 Service Pack 2 (SP2) server farm. You upgrade
the server farm to SharePoint Server 2010 Server Pack 1 (SP1). You open a SharePoint site and discover
that you cannot select the Visual Upgrade option. You need to ensure that you can perform a visual
upgrade of the SharePoint site.
What should you do?
A. Run stsadm.exe and specify the preupgradecheck operation
B. Run the upgrade-spcontentdatabase cmdlet.
C. Run psconfig.exe and specify the -cmd parameter.
D. Run stsadm.exe and specify the setproperty operation.
Answer: B

Microsoft   70-667   certification 70-667

NO.14 You have a SharePoint Server 2010 Service Pack 1 (SP1) server farm. You configure the User Profile
Synchronization Service to use a new user account as a service account. You discover that user profiles
are not imported from Active Directory. You verify that the service is running, and then you run the
Forefront Identity Manager service. You receive the following error message: "Replication Access is
Denied." You need to ensure that the user profiles are imported from Active Directory. Which permissions
should you assign to which service account?
A. the Replication synchronization permission to the service account of the User Profile Synchronization
Service
B. the Replication synchronization permission to the service account of the farm
C. the Replicating Directory Changes permission to the service account of the farm
D. the Replicating Directory Changes permission to the service account of the User Profile
Synchronization Service
Answer: D

Microsoft   certification 70-667   70-667   70-667 examen   70-667

NO.15 You have a SharePoint Server 2010 Service Pack 1 (SP1) server farm. You need to back up the
contents of a custom list every day. The solution must minimize the size of the backup.
What should you do?
A. From Central Administration, click Performa site collection backup.
B. From Central Administration, click Perform a backup.
C. Create a scheduled task that runs the backup-spsite cmdlet.
D. Create a scheduled task that runs the export-spweb cmdlet.
Answer: D

Microsoft examen   70-667   70-667

NO.16 applications named WebApp1 and WebApp2. WebApp1 contains one site collection. The site collection
contains 300 sites. WebApp2 is used to host personal sites. You need to ensure that trace logs are
deleted automatically two days after the logs are created. Which Windows PowerShell cmdlet should you
use?( Note: This quesiton is part of a series of questions that use the same set of answer choices. Each
answer choice may be used once, more than once, or not at all.)
A. Set-SPContentDatabase
B. Set-SPUsageService
C. Set-SPSite
D. Set-SPDiagnosticConfig
E. Install-SPApplicationContent
F. Set-SPWeb
G. Set-SPAlternateURL
H. Set-SPTimerJob
I. Enable-SPHealthAnalysisRule
J. New-SPWebApplication
K. Enable-SPTimerJob
L. Set-SPLogLevel
M. New-SPWebApplicationExtension
N. Remove-SPUsageApplication
Answer: D

Microsoft   70-667 examen   70-667   70-667

NO.17 Your network contains two servers named Server1 and Server2 that run Microsoft SQL Server. All of
the databases on Server1 are mirrored to Server2. You have a SharePoint Server 2010 Service Pack 1
(SP1) server farm that is configured to use Server1 as the database server for all of the databases.
You need to ensure that users can access all SharePoint sites if Server1 fails.
What should you configure?
A. the Business Data Connectivity service application
B. a failover server for each SharePoint database
C. a failover server for each service applicaiton
D. a failover server for each content database
Answer: B

Microsoft   70-667 examen   70-667 examen   70-667

NO.18 You have a SharePoint Server 2010 Service Pack 1 (SP1) server farm. You need to ensure that a user
can create Excell Services service applications. The solution must minimize the number of permissions
assigned to the user.
What should you do?
A. Add a new managed account to the server farm.
B. Modify the Farm Administrators group.
C. Modify the service accounts of the server farm.
D. Modify the administrators of the Excel Services service application.
Answer: B

Microsoft   70-667   70-667 examen   certification 70-667   70-667

NO.19 You configure a SharePoint 2010 farm.
You need to gather data from existing logs on critical events only.
What should you do?
A. Run the following Windows PowerShell cmdlet:
Set-SPLogLevel -EventSeverity ErrorCritical
Get-SPLogLevel
B. Run the following Windows PowerShell cmdlet:
Get-SPLogEvent | Out-GridView
C. Run the following Windows PowerShell cmdlet:
Get-SPLogLevel -Identity "Cricial Issues"
D. Use the SharePoint Health Analyzer feature.
Answer: A

Microsoft examen   70-667   70-667   70-667

NO.20 You have a SharePoint Server 2010 Service Pack 1 (SP1) server farm. You need to ensure that users
can receive SMS alert notifications.
What should you configure?
A. the Service Application Associations settings from Central Administration
B. the Send To Connections settings from Central Administration
C. the mobileControls settings in the web.config file
D. the Mobile Account settings from Central Administration
Answer: D

Microsoft   70-667 examen   70-667   70-667 examen

Finalement, la Q&A Microsoft 70-667 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-667 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.