2013年11月29日星期五

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

Avec la version plus nouvelle de Q&A Microsoft 070-503, réussir le test Microsoft 070-503 n'est plus un rêve très loin pour vous. Pass4Test peut vous aider à réaliser ce rêve. Le test simualtion de Pass4Test est bien proche du test réel. Vous aurez l'assurance à réussir le test avec le guide de Pass4Test. Voilà, le succès est juste près de vous.

L'équipe de Pass4Test autorisée offre sans arrêt les bonnes resources aux candidats de test Certification Microsoft 070-503. Les documentations particulièrement visée au test Microsoft 070-503 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-503.

Selon les anciens test Microsoft 070-503, la Q&A offerte par Pass4Test est bien liée avec le test réel.

Code d'Examen: 070-503
Nom d'Examen: Microsoft (TS: Microsoft .NET Framework 3.5 C Windows Communication Foundation)
Questions et réponses: 158 Q&As

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

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

Pass4Test a une grande équipe composée des experts d'expérience dans l'industrie IT. Leurs connaissances professionnelles et les recherches font une bonne Q&A, qui vous permet à passer le test Microsoft 070-503. Dans Pass4Test, vous pouvez trouver une façon plus convenable à se former. Les resources de Pass4Test sont bien fiable. Choisissez Pass4Test, choisissez un raccourci à réussir le test Microsoft 070-503.

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

NO.1 You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5.
The service will be hosted in a Console application.
You need to configure the service by using a configuration file other than the default app.config file.
Which code segment should you use?
A. Class MyServiceHost
Inherits ServiceHost
Public Sub New(ByVal serviceType As Type, _
ByVal ParamArray baseAddresses As Uri())
MyBase.New(serviceType, baseAddresses)
End Sub
Protected Overrides Sub InitializeRuntime()
'Load configuration here
End Sub
End Class
B. Class MyServiceHost
Inherits ServiceHost
Public Sub New(ByVal serviceType As Type, _
ByVal ParamArray baseAddresses As Uri())
MyBase.New(serviceType, baseAddresses)
End Sub
Protected Overrides Sub ApplyConfiguration()
'Load configuration here
End Sub
End Class
C. Class MyServiceHost
Inherits ServiceHost
Public Sub New(ByVal serviceType As Type, _
ByVal ParamArray baseAddresses As Uri())
MyBase.New(serviceType, baseAddresses)
End Sub
Protected Shadows Sub InitializeDescription( _
ByVal serviceType As Type, _
ByVal baseAddresses As UriSchemeKeyedCollection)
'Load configuration here
End Sub
End Class
D. Class MyServiceHost
Inherits ServiceHost
Public Sub New(ByVal serviceType As Type, _
ByVal ParamArray baseAddresses As Uri())
MyBase.New(serviceType, baseAddresses)
End Sub
Protected Shadows Sub AddBaseAddresses(ByVal baseAddress As Uri)
'Load configuration here
End Sub
End Class
Answer: B

Microsoft examen   070-503   070-503   070-503

NO.2 You create a Windows Communication Foundation (WCF) service by using Microsoft .NET
Framework 3.5.
You write the following code segment. (Line numbers are included for reference only.)
01 Public Interface IMyService
02
03 Function ProcessString(ByVal name As String) As String
04 End Interface
You create a host for the WCF service. You also create a service endpoint at http: //localhost:8080/service.
You add an instance of the HttpTransferEndPointBehavior class to the host.
You need to ensure that the ProcessString method can be invoked from a Web browser by using the URL
http: //localhost:8080/service/process?name=value
Which code segment should you insert at line 02?
A. <OperationContract(Name:="process", Action:="Get")> _
B. <OperationContract(Name:="process", Action:="Post")> _
C. <OperationContract()> _
<HttpTransferContract(Path:="process", Method:="Get")> _
D. <OperationContract()> _
<HttpTransferContract(Path:="process", Method:="Post")> _
Answer: C

Microsoft   certification 070-503   certification 070-503   070-503

NO.3 You create a Windows Communication Foundation service by using Microsoft .NET Framework 3.5.
The service contains the following code segment.
[DataContract]
public class Person
{
}
[DataContract]
public class Customer : Person
{
}
You need to create a service contract that meets the following requirements:
The service contract must have an operation contract named GetPerson that returns an object of type
Person.
The GetPerson operation must be able to return an object of type Customer.
Which code segment should you use?
A. [ServiceContract]
[ServiceKnownType("GetPerson")]
public interface IMyService
{
[OperationContract]
Person GetPerson();
}
B. [ServiceContract]
public interface IMyService
{
[OperationContract]
[ServiceKnownType("Customer")]
Person GetPerson();
}
C. [ServiceContract]
[ServiceKnownType(typeof(Customer))]
public interface IMyService
{
[OperationContract]
Person GetPerson();
}
D. [ServiceContract]
[ServiceKnownType("GetPerson",typeof(Customer))]
public interface IMyService
{
[OperationContract]
Person GetPerson();
}
Answer: C

Microsoft examen   070-503 examen   070-503   070-503 examen   070-503

NO.4 You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5. The service will contain an enumeration named OrderState.
The OrderState enumeration will contain the following four values:
Processing
Cancelled
Confirmed
Closed
The client application must be able to set the state of an Order entity to only the following two values:
Cancelled
Closed
You need to create the data contract for OrderState.
Which code segment should you use?
A. [DataContract]
public enum OrderState
{
Processing=1,
[DataMember]
Cancelled=2,
[DataMember]
Confirmed=3,
Closed=4
}
B. [DataContract]
public enum OrderState
{
Processing=1,
[EnumMember]
Cancelled=2,
Confirmed=3,
[EnumMember]
Closed=4
}
C. [DataContract]
public enum OrderState
{
[EnumMember(Value="False")]
Processing=1,
[EnumMember(Value="True")]
Cancelled=2,
[EnumMember(Value="True")]
Confirmed=3,
[EnumMember(Value="False")]
Closed=4
}
D. [DataContract]
public enum OrderState
{
[DataMember]
Processing=1,
[DataMember(IsRequired=true)]
Cancelled=2,
[DataMember]
Confirmed=3,
[DataMember(IsRequired=true)]
Closed=4
}
Answer: B

Microsoft   070-503 examen   070-503   certification 070-503

NO.5 You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5.
The service will be hosted in a Console application.
You need to configure the service by using a configuration file other than the default app.config file.
Which code segment should you use?
A. class MyServiceHost : ServiceHost
{
public MyServiceHost(Type serviceType,
params Uri[] baseAddresses) : base(serviceType, baseAddresses)
{
}
protected override void InitializeRuntime()
{
//Load configuration here
}
}
B. class MyServiceHost : ServiceHost
{
public MyServiceHost(Type serviceType,
params Uri[] baseAddresses) : base(serviceType, baseAddresses)
{
}
protected override void ApplyConfiguration()
{
//Load configuration here
}
}
C. class MyServiceHost : ServiceHost
{
public MyServiceHost(Type serviceType,
params Uri[] baseAddresses) : base(serviceType, baseAddresses)
{
}
protected new void InitializeDescription(Type serviceType,
UriSchemeKeyedCollection baseAddresses)
{
//Load configuration here.
}
}
D. class MyServiceHost : ServiceHost
{
public MyServiceHost(Type serviceType,
params Uri[] baseAddresses) : base(serviceType, baseAddresses)
{
}
protected new void AddBaseAddress(Uri baseAddress)
{
//Load configuration here.
}
}
Answer: B

Microsoft   certification 070-503   certification 070-503   070-503

NO.6 You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5.
You need to ensure that the service can send data in the following format to the client applications.
<Account Id="">
<Name> </Name>
<Balance Currency=""> </Balance>
</Account>
Which code segment should you use?
A. <Serializable()> _
Public Class Account
<XmlAttribute()> _
Public Id As String
<XmlElement()> _
Public Name As String
<XmlAttribute()> _
Public Currency As String
<XmlElement()> _
Public Balance As Double
End Class
B. <DataContract()> _
Public Class Account
<DataMember(Order:=0)> _
Public Id As String
<DataMember(Order:=1)> _
Public Name As String
<DataMember(Order:=0)> _
Public Balance As Double
<DataMember(Order:=1)> _
Public Currency As String
End Class
C. <Serializable()> _
Public Class Account
<XmlAttribute()> _
Public Id As String
Public Name As String
<XmlElement("Balance")> _
Public Balance As BalanceVal
End Class
<Serializable()> _
Public Class BalanceVal
<XmlText()> _
Public Amount As Double
<XmlAttribute()> _
Public Currency As String
End Class
D. <DataContract()> _
Public Class Account
<DataMember(Order:=0)> _
Public Id As String
<DataMember(Order:=1)> _
Public Name As String
<DataMember(Name:="Balance", Order:=2)> _
Public Balance As BalanceVal
End Class
<DataContract()> _
Public Structure BalanceVal
<DataMember(Order:=0)> _
Public Amount As Double
<DataMember(Order:=1)> _
Public Currency As String
End Structure
Answer: C

Microsoft   070-503   070-503 examen   certification 070-503

NO.7 You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5.
The service contains the following code segment.
[ServiceContract]
public interface IMyService
{
[OperationContract(IsOneWay=true,
ProtectionLevel=ProtectionLevel.None)]
[TransactionFlow(TransactionFlowOption.Allowed)]
void DoSomething();
}
You need to ensure that the DoSomething operation can participate in transactions.
Which code segment should you use to replace the existing operation contract?
A. [OperationContract(ProtectionLevel=ProtectionLevel.None)]
[TransactionFlow(TransactionFlowOption.Allowed)]
void DoSomething();
B. [OperationContract(ProtectionLevel=
ProtectionLevel.EncryptAndSign)]
[TransactionFlow(TransactionFlowOption.NotAllowed)]
void DoSomething();
C. [OperationContract(IsOneWay=true,
ProtectionLevel=ProtectionLevel.EncryptAndSign)]
[TransactionFlow(TransactionFlowOption.Allowed)]
void DoSomething();
D. [OperationContract(IsOneWay=true,
ProtectionLevel=ProtectionLevel.Sign)]
[TransactionFlow(TransactionFlowOption.Mandatory)]
void DoSomething();
Answer: A

Microsoft   070-503 examen   070-503 examen   certification 070-503

NO.8 You create a Windows Communication Foundation service by using Microsoft .NET Framework 3.5.
You write the following code segment.
[ServiceContract]
public interface IMathService
{
[OperationContract]
int AddNumbers(int a, int b);
double AddNumbers(double a, double b);
}
You have not deployed the IMathService service.
You need to expose the AddNumbers (double a, double b) operation to the IMathService service contract.
Which code segment should you use?
A. [OperationContract]
int AddNumbers(int a, int b);
[OperationContract]
double AddNumbers(double a, double b);
B. [OperationContract(Name="AddInt")]
int AddNumbers(int a, int b);
[OperationContract(Name="AddDouble")]
double AddNumbers(double a, double b);
C. [OperationContract(Action="IMathService/AddInt")]
int AddNumbers(int a, int b);
[OperationContract(Action="IMathService/AddDouble")]
double AddNumbers(double a, double b);
D. [OperationContract(Action="AddInt/*")]
int AddNumbers(int a, int b);
[OperationContract(Action="AddDouble/*")]
double AddNumbers(double a, double b);
Answer: B

Microsoft   070-503   070-503   certification 070-503

NO.9 You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5.
The service contains the following code segment.
<ServiceContract()> _
Public Interface IMyService
<OperationContract(IsOneWay:=True, _
ProtectionLevel:=ProtectionLevel.None)> _
<TransactionFlow(TransactionFlowOption.Allowed)> _
Sub DoSomething()
End Interface
You need to ensure that the DoSomething operation can participate in transactions.
Which code segment should you use to replace the existing operation contract?
A. <OperationContract( _
ProtectionLevel:=ProtectionLevel.None)> _
<TransactionFlow(TransactionFlowOption.Allowed)> _
Sub DoSomething()
B. <OperationContract( _
ProtectionLevel:=ProtectionLevel.EncryptAndSign)> _
<TransactionFlow(TransactionFlowOption.NotAllowed)> _
Sub DoSomething()
C. <OperationContract(IsOneWay:=True, _
ProtectionLevel:=ProtectionLevel.EncryptAndSign)> _
<TransactionFlow(TransactionFlowOption.Allowed)> _
Sub DoSomething()
D. <OperationContract(IsOneWay:=True, _
ProtectionLevel:=ProtectionLevel.Sign)> _
<TransactionFlow(TransactionFlowOption.Mandatory)> _
Sub DoSomething()
Answer: A

Microsoft   070-503   070-503 examen   070-503 examen

NO.10 You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5.
You need to ensure that data sent in a SOAP header is in the following XML format.
<Data>
<string>String 1</string>
<string>String 2</string>
<string>String 3</string>
</Data>
Which code segment should you use?
A. <MessageContract()> _
Public Class MyMessage
<MessageHeader()> _
Public Data() As String
End Class
B. <MessageContract()> _
Public Class MyMessage
<MessageHeaderArray()> _
Public Data() As String
End Class
C. <MessageContract()> _
Public Class MyMessage
<MessageProperty()> _
Public Data() As String
End Class
D. <MessageContract()> _
Public Class MyMessage
<MessageBodyMember(Order:=0)> _
Public Data() As String
End Class
Answer: A

Microsoft   certification 070-503   certification 070-503   070-503 examen   certification 070-503

NO.11 You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5. You have successfully defined a service contract named IManageOrders.
You write the following code segment.
public class OrderImpl : IManageOrders {
public void MarkOrderClosed(int orderId){
try {
...
}
catch (SqlException exc){
throw new FaultException<DataFault>(new DataFault());
}
}
}
[DataContract]
public class DataFault {
}
You need to create a fault contract for the MarkOrderClosed method on the IManageOrders service
contract.
Which code segment should you add?
A. [FaultContract(typeof(DataFault))]
B. [FaultContract(typeof(Exception))]
C. [FaultContract(typeof(SqlException))]
D. [FaultContract(typeof(FaultException))]
Answer: A

Microsoft   070-503   070-503

NO.12 You create a Windows Communication Foundation service by using Microsoft .NET Framework 3.5.
You write the following code segment. (Line numbers are included for reference only.)
01 <ServiceContract(SessionMode:=SessionMode.Required)> _
02 Public Interface IOrderManager
03
04 Sub CloseOrder()
05 End Interface
You need to decorate the operation as the method that closes the current session.
Which code segment should you insert at line 03?
A. <OperationContract(IsInitiating:=False)> _
B. <OperationContract(IsTerminating:=True)> _
C. <OperationContract()> _
<OperationBehavior( _
ReleaseInstanceMode:=ReleaseInstanceMode.AfterCall)> _
D. <OperationContract(IsTerminating:=False)> _
<OperationBehavior( _
ReleaseInstanceMode:=ReleaseInstanceMode.AfterCall)> _
Answer: B

Microsoft   certification 070-503   070-503 examen

NO.13 You create a Windows Communication Foundation service by using Microsoft .NET Framework 3.5.
The service contains the following code segment.
<DataContract()> _
Public Class Person
...
End Class
<DataContract()> _
Public Class Customer
Inherits Person
...
End Class
You need to create a service contract that meets the following requirements:
The service contract must have an operation contract named GetPerson that returns an object of type
Person.
The GetPerson operation must be able to return an object of type Customer.
Which code segment should you use?
A. <ServiceContract()> _
<ServiceKnownType("GetPerson")> _
Public Interface IMyService
<OperationContract()> _
Function GetPerson() As Person
End Interface
B. <ServiceContract()> _
Public Interface IMyService
<OperationContract()> _
<ServiceKnownType("Customer")> _
Function GetPerson() As Person
End Interface
C. <ServiceContract()> _
<ServiceKnownType(GetType(Customer))> _
Public Interface IMyService
<OperationContract()> _
Function GetPerson() As Person
End Interface
D. <ServiceContract()> _
<ServiceKnownType("GetPerson", GetType(Customer))> _
Public Interface IMyService
<OperationContract()> _
Function GetPerson() As Person
End Interface
Answer: C

certification Microsoft   070-503   070-503   070-503

NO.14 You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5.
You need to programmatically add the following endpoint definition to the service.
http://localhost:8000/ExamService/service
Which code segment should you use?
A. Dim baseAddress As String = "http: //localhost:8000/ExamService"
Dim binding1 As New BasicHttpBinding()
Using host As New ServiceHost(GetType(ExamService))
host.AddServiceEndpoint(GetType(IExam), binding1, baseAddress)
End Using
B. Dim baseAddress As String = _ "http: //localhost:8000/ExamService/service"
Dim binding1 As New BasicHttpBinding()
Using host As New ServiceHost(GetType(ExamService))
host.AddServiceEndpoint(GetType(IExam), binding1, baseAddress)
End Using
C. Dim baseAddress As String = "http: //localhost:8000/ExamService"
Dim binding1 As New WSHttpBinding()
Using host As New ServiceHost(GetType(ExamService))
host.AddServiceEndpoint(GetType(IExam), binding1, baseAddress)
End Using
D. Dim baseAddress As String = _
"http: //localhost:8000/ExamService/service"
Dim binding1 As New NetTcpBinding()
Using host As New ServiceHost(GetType(ExamService))
host.AddServiceEndpoint(GetType(IExam), binding1, baseAddress)
End Using
Answer: B

certification Microsoft   070-503   070-503   certification 070-503   070-503 examen

NO.15 You create a Windows Communication Foundation (WCF) service by using Microsoft .NET Framework
3.5.
The WCF service contains two operations named ProcessSimpleOrder and ProcessComplexOrder.
You need to expose the ProcessSimpleOrder operation to all the client applications. You also need to
expose the ProcessComplexOrder operation only to specific client applications.
Which code segment should you use?
A. [ServiceContract]
public interface IOrderManager
{
[OperationContract(Action="*")]
void ProcessSimpleOrder();
[OperationContract]
void ProcessComplexOrder();
}
B. [ServiceContract]
public interface IOrderManager
{
[OperationContract(Name="http: //contoso.com/Simple")]
void ProcessSimpleOrder();
[OperationContract(Name="http: //contoso.com/Complex")]
void ProcessComplexOrder();
}
C. [ServiceContract]
public interface ISimpleOrderManager
{
[OperationContract]
void ProcessSimpleOrder();
}
[ServiceContract]
public interface IComplexOrderManager: ISimpleOrderManager
{
[OperationContract]
void ProcessComplexOrder();
}
D. [ServiceContract]
public interface ISimpleOrderManager
{
[OperationContract(Name="http: //contoso.com/Simple")]
void ProcessSimpleOrder();
}
public interface IComplexOrderManager: ISimpleOrderManager
{
[OperationContract(Name="http: //contoso.com/Complex")]
void ProcessComplexOrder();
}
Answer: C

Microsoft   070-503   070-503

NO.16 You create a Windows Communication Foundation service by using Microsoft .NET Framework 3.5.
You write the following code segment.
<ServiceContract()> _
Public Interface IMathService
<OperationContract()> _
Function AddNumbers( _
ByVal a As Integer, ByVal b As Integer) As Integer
Function AddNumbers( _
ByVal a As Double, ByVal b As Double) As Double
End Interface
You have not deployed the IMathService service.
You need to expose the AddNumbers (a As Double, b As Double) As Double operation to the
IMathService service contract.
Which code segment should you use?
A. <OperationContract()> _
Function AddNumbers( _
ByVal a As Integer, ByVal b As Integer) As Integer
<OperationContract()> _
Function AddNumbers( _
ByVal a As Double, ByVal b As Double) As Double
B. <OperationContract(Name:="AddInt")> _
Function AddNumbers( _
ByVal a As Integer, ByVal b As Integer) As Integer
<OperationContract(Name:="AddDouble")> _
Function AddNumbers( _
ByVal a As Double, ByVal b As Double) As Double
C. <OperationContract(Action:="IMathService/AddInt")> _
Function AddNumbers( _
ByVal a As Integer, ByVal b As Integer) As Integer
<OperationContract(Action:="IMathService/AddDouble")> _
Function AddNumbers( _
ByVal a As Double, ByVal b As Double) As Double
D. <OperationContract(Action:="AddInt/*")> _
Function AddNumbers( _
ByVal a As Integer, ByVal b As Integer) As Integer
<OperationContract(Action:="AddDouble/*")> _
Function AddNumbers( _
ByVal a As Double, ByVal b As Double) As Double
Answer: B

Microsoft examen   070-503 examen   070-503   070-503

NO.17 You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5.
You write the following code segment. (Line numbers are included for reference only.)
01 [ServiceContract(Namespace="http://uri.contoso.com")]
02 public interface IMyService
03 {
04 [OperationContract]
05 string ProcessDetails(string s);
06 [OperationContract(Action="UpdateStatus")]
07 void UpdateStatus();
08
09 }
If the existing operation contract is unable to process a request made to the service, a generic operation
contract must attempt to process the request.
You need to create the generic operation contract.
Which code segment should you insert at line 08?
A. [OperationContract(Action="*")]
void ProcessOthers(Message msg);
B. [OperationContract(Action="*")]
void ProcessOthers();
C. [OperationContract(Action="Default")]
void ProcessOthers(Message msg);
D. [OperationContract(Action="Default")]
void ProcessOthers();
Answer: A

Microsoft   070-503 examen   certification 070-503

NO.18 You create a Windows Communication Foundation (WCF) service by using Microsoft .NET Framework
3.5.
The WCF service contains two operations named ProcessSimpleOrder and ProcessComplexOrder.
You need to expose the ProcessSimpleOrder operation to all the client applications. You also need to
expose the ProcessComplexOrder operation only to specific client applications.
Which code segment should you use?
A. <ServiceContract()> _
Public Interface IOrderManager
<OperationContract(Action:="*")> _
Sub ProcessSimpleOrder()
<OperationContract()> _
Sub ProcessComplexOrder()
End Interface
B. <ServiceContract()> _
Public Interface IOrderManager
<OperationContract(Name:="http: //contoso.com/Simple")> _
Sub ProcessSimpleOrder()
<OperationContract(Name:="http: //contoso.com/Complex")> _
Sub ProcessComplexOrder()
End Interface
C. <ServiceContract()> _
Public Interface ISimpleOrderManager
<OperationContract()> _
Sub ProcessSimpleOrder()
End Interface
<ServiceContract()> _
Public Interface IComplexOrderManager
Inherits ISimpleOrderManager
<OperationContract()> _
Sub ProcessComplexOrder()
End Interface
D. <ServiceContract()> _
Public Interface ISimpleOrderManager
<OperationContract(Name:="http: //contoso.com/Simple")> _
Sub ProcessSimpleOrder()
End Interface
Public Interface IComplexOrderManager
Inherits ISimpleOrderManager
<OperationContract(Name:="http: //contoso.com/Complex")> _
Sub ProcessComplexOrder()
End Interface
Answer: C

certification Microsoft   070-503   070-503   070-503 examen

NO.19 You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5.
You need to ensure that the service can send data in the following format to the client applications.
<Account Id="">
<Name> </Name>
<Balance Currency=""> </Balance>
</Account>
Which code segment should you use?
A. [Serializable]
public class Account
{
[XmlAttribute]
public string Id;
[XmlElement]
public string Name;
[XmlAttribute]
public string Currency;
[XmlElement]
public double Balance;
}
B. [DataContract]
public class Account
{
[DataMember(Order=0)]
public string Id;
[DataMember(Order=1)]
public string Name;
[DataMember(Order=0)]
public double Balance;
[DataMember(Order=1)]
public string Currency;
}
C. [Serializable]
public class Account
{
[XmlAttribute]
public string Id;
public string Name;
[XmlElement("Balance")]
public BalanceVal Balance;
}
[Serializable]
public class BalanceVal
{
[XmlText]
public double Amount;
[XmlAttribute]
public string Currency;
}
D. [DataContract]
public class Account
{
[DataMember(Order=0)]
public string Id;
[DataMember(Order=1)]
public string Name;
[DataMember(Name="Balance", Order=2)]
public BalanceVal Balance;
}
[DataContract]
public struct BalanceVal
{
[DataMember(Order=0)]
public double Balance;
[DataMember(Order=1)]
public string Currency;
}
Answer: C

certification Microsoft   070-503   070-503   070-503 examen

NO.20 You create a Windows Communication Foundation (WCF) service by using Microsoft .NET
Framework 3.5.
You write the following code segment. (Line numbers are included for reference only.)
01 public interface IMyService
02 {
03
04 string ProcessString(string name);
05 }
You create a host for the WCF service. You also create a service endpoint at http://localhost:8080/service.
You add an instance of the HttpTransferEndPointBehavior class to the host.
You need to ensure that the ProcessString method can be invoked from a Web browser by using the URL
http://localhost:8080/service/process?name=value
Which code segment should you insert at line 03?
A. [OperationContract(Name="process", Action="Get")]
B. [OperationContract(Name="process", Action="Post")]
C. [OperationContract]
[WebGet(UriTemplate = "process?name={name}")]
D. [OperationContract]
[WebInvoke(UriTemplate = "process?name={name}")]
Answer: C

Microsoft   070-503 examen   certification 070-503

NO.21 You have created a Windows Communication Foundation service by using Microsoft .NET Framework
3.5.
The existing service interface is named IMyService, and contains the following code segment.
<ServiceContract(Name:="SvcOrder", _
Namespace:="http: //contoso.com/services")> _
Public Interface IMyService
<OperationContract()> _
Sub DoSomething()
End Interface
You create a new service named IMyServiceV1 that contains an operation named DoSomethingElse.
You need to ensure that existing client applications are still able to access the IMyService.DoSomething
method without modifying client code.
Which code segment should you use?
A. <ServiceContract(Namespace:="http: //contoso.com/services/V1")> _
Public Interface IMyServiceV1
Inherits IMyService
<OperationContract()> _
Sub DoSomethingElse()
End Interface
B. <ServiceContract(Name:="SvcOrder")> _
Public Interface IMyServiceV1
Inherits IMyService
<OperationContract()> _
Sub DoSomethingElse()
End Interface
C. <ServiceContract(Name:="SvcOrderV1", _
Namespace:="http: //contoso.com/services")> _
Public Interface IMyServiceV1
Inherits IMyService
<OperationContract()> _
Sub DoSomethingElse()
End Interface
D. <ServiceContract(Name:="SvcOrder", _
Namespace:="http: //contoso.com/services")> _
Public Interface IMyServiceV1
Inherits IMyService
<OperationContract()> _
Sub DoSomethingElse()
End Interface
Answer: D

Microsoft   070-503   070-503 examen   070-503 examen   070-503

NO.22 You are creating a Windows Communication Foundation (WCF) service by using Microsoft .NET
Framework 3.5.
You configure a binding to enable streaming.
You need to ensure that the client application is able to stream large XML files to the WCF service.
Which operation contract should you create?
A. <OperationContract()> _
Sub UploadFile(ByVal xmlData As Stream)
B. <OperationContract()> _
Sub UploadFile(ByVal xmlData As XmlWriter)
C. <OperationContract()> _
Sub UploadFile(ByVal xmlData As StreamWriter)
D. <OperationContract()> _
Sub UploadFile(ByVal xmlData As Byte())
Answer: A

certification Microsoft   070-503   certification 070-503

NO.23 5. You have successfully defined a service contract named IManageOrders.
You write the following code segment.
Public Class OrderImpl
Implements IManageOrders
Public Sub MarkOrderClosed(ByVal orderId As Integer) _
Implements IManageOrders.MarkOrderClosed
Try
...
Catch ex As SqlException
Throw New FaultException(Of DataFault)( _
New DataFault())
End Try
End Sub
End Class
<DataContract()> _
Public Class DataFault
End Class
You need to create a fault contract for the MarkOrderClosed method on the IManageOrders service
contract.
Which code segment should you add?
A. <FaultContract(GetType(DataFault))>
B. <FaultContract(GetType(Exception))>
C. <FaultContract(GetType(SqlException))>
D. <FaultContract(GetType(FaultException))>
Answer: A

Microsoft examen   070-503   070-503 examen
3. You have created a Windows Communication Foundation service by using Microsoft .NET Framework
3.5.
The existing service interface is named IMyService, and contains the following code segment.
[ServiceContract(Name="SvcOrder",
?Namespace="http://contoso.com/services")]
public interface IMyService
{
[OperationContract]
void DoSomething();
}
You create a new service named IMyServiceV1 that contains an operation named DoSomethingElse.
You need to ensure that existing client applications are still able to access the IMyService.DoSomething
method without modifying client code.
Which code segment should you use?
A. [ServiceContract(Namespace="http:?//contoso.com/services/V1")]
public interface IMyServiceV1 : IMyService
{
[OperationContract]
void DoSomethingElse();
}
B. [ServiceContract(Name="SvcOrder")]
public interface IMyServiceV1 : IMyService
{
[OperationContract]
void DoSomethingElse();
}
C. [ServiceContract(Name="SvcOrderV1",
Namespace="http: //contoso.com/services")]
public interface IMyServiceV1 : IMyService
{
[OperationContract]
void DoSomethingElse();
}
D. [ServiceContract(Name="SvcOrder",
Namespace="http: //contoso.com/services")]
public interface IMyServiceV1 : IMyService
{
[OperationContract]
void DoSomethingElse();
}
Answer: D

Microsoft   070-503   070-503   070-503 examen

NO.24 You are creating a Windows Communication Foundation service by using Microsoft .NET Framework

NO.25 You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5. The service will contain an enumeration named OrderState.
The OrderState enumeration will contain the following four values:
Processing
Cancelled
Confirmed
Closed
The client application must be able to set the state of an Order entity to only the following two values:
Cancelled
Closed
You need to create the data contract for OrderState.
Which code segment should you use?
A. <DataContract()> _
Public Enum OrderState
Processing = 1
<DataMember()> _
Cancelled = 2
<DataMember()> _
Confirmed = 3
Closed = 4
End Enum
B. <DataContract()> _
Public Enum OrderState
Processing = 1
<EnumMember()> _
Cancelled = 2
Confirmed = 3
<EnumMember()> _
Closed = 4
End Enum
C. <DataContract()> _
Public Enum OrderState
<EnumMember(Value:="False")> _
Processing = 1
<EnumMember(Value:="True")> _
Cancelled = 2
<EnumMember(Value:="True")> _
Confirmed = 3
<EnumMember(Value:="False")> _
Closed = 4
End Enum
D. <DataContract()> _
Public Enum OrderState
<DataMember()> _
Processing = 1
<DataMember(IsRequired:=True)> _
Cancelled = 2
<DataMember()> _
Confirmed = 3
<DataMember(IsRequired:=True)> _
Closed = 4
End Enum
Answer: B

certification Microsoft   certification 070-503   certification 070-503   070-503   certification 070-503

NO.26 You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5.
You write the following code segment. (Line numbers are included for reference only.)
01 <ServiceContract(Namespace:="http://uri.contoso.com")> _
02 Public Interface IMyService
03 <OperationBehavior()> _
04 Function ProcessDetails(ByVal s As String) As String
05 <OperationContract(Action:="UpdateStatus")> _
06 Sub UpdateStatus()
07
08 End Interface
If the existing operation contract is unable to process a request made to the service, a generic operation
contract must attempt to process the request.
You need to create the generic operation contract.
Which code segment should you insert at line 07?
A. <OperationContract(Action:="*")> _
Sub ProcessOthers(ByVal msg As Message)
B. <OperationContract(Action:="*")> _
Sub ProcessOthers()
C. <OperationContract(Action:="Default")> _
Sub ProcessOthers(ByVal msg As Message)
D. <OperationContract(Action:="Default")> _
Sub ProcessOthers()
Answer: A

Microsoft   070-503 examen   070-503   070-503   070-503 examen

NO.27 You create a Windows Communication Foundation service by using Microsoft .NET Framework 3.5.
You write the following code segment. (Line numbers are included for reference only.)
01 [ServiceContract(SessionMode=SessionMode.Required)]
02 public interface IOrderManager
03 {
04
05 void CloseOrder();
06 }
You need to decorate the operation as the method that closes the current session.
Which code segment should you insert at line 04?
A. [OperationContract(IsInitiating=false)]
B. [OperationContract(IsTerminating=true)]
C. [OperationContract]
[OperationBehavior(ReleaseInstanceMode=
ReleaseInstanceMode.AfterCall)]
D. [OperationContract(IsTerminating=false)]
[OperationBehavior(ReleaseInstanceMode=
ReleaseInstanceMode.AfterCall)]
Answer: B

Microsoft   070-503   070-503   070-503   070-503

NO.28 You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5.
You need to programmatically add the following endpoint definition to the service.
http://localhost:8000/ExamService/service
Which code segment should you use?
A. String baseAddress="http: //localhost:8000/ExamService";
BasicHttpBinding binding1=new BasicHttpBinding();
using(ServiceHost host=new ServiceHost(typeof(ExamService)))
{
host.AddServiceEndpoint(typeof(IExam),binding1,baseAddress);
}
B. String baseAddress="http: //localhost:8000/ExamService/service";
BasicHttpBinding binding1=new BasicHttpBinding();
using(ServiceHost host=new ServiceHost(typeof(ExamService)))
{
host.AddServiceEndpoint(typeof(IExam),binding1,baseAddress);
}
C. String baseAddress="http: //localhost:8000/ExamService";
WsHttpBinding binding1=new WsHttpBinding();
using(ServiceHost host=new ServiceHost(typeof(ExamService)))
{
host.AddServiceEndpoint(typeof(IExam),binding1,baseAddress);
}
D. String baseAddress="net.tcp: //localhost:8000/ExamService/service";
NetTcpBinding binding1=new NetTcpBinding();
using(ServiceHost host=new ServiceHost(typeof(ExamService)))
{
host.AddServiceEndpoint(typeof(IExam),binding1,baseAddress);
}
Answer: B

Microsoft   070-503   070-503 examen   certification 070-503

NO.29 You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5.
You need to ensure that data sent in a SOAP header is in the following XML format.
<Data>
<string>String 1</string>
<string>String 2</string>
<string>String 3</string>
</Data>
Which code segment should you use?
A. [MessageContract]
public class MyMessage
{
[MessageHeader]
public string[] Data;
}
B. [MessageContract]
public class MyMessage
{
[MessageHeaderArray]
public string[] Data;
}
C. [MessageContract]
public class MyMessage
{
[MessageProperty]
public string[] Data;
}
D. [MessageContract]
public class MyMessage
{
[MessageBodyMember (Order=0)]
public string[] Data;
}
Answer: A

Microsoft   070-503   certification 070-503   070-503 examen

NO.30 You are creating a Windows Communication Foundation (WCF) service by using Microsoft .NET
Framework 3.5.
You configure a binding to enable streaming.
You need to ensure that the client application is able to stream large XML files to the WCF service.
Which operation contract should you create?
A. [OperationContract]
void UploadFile(Stream xmlData);
B. [OperationContract]
void UploadFile(XmlWriter xmlData);
C. [OperationContract]
void UploadFile(StreamWriter xmlData);
D. [OperationContract]
void UploadFile(byte[] xmlData);
Answer: A

Microsoft   certification 070-503   certification 070-503   070-503

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

Dernières Microsoft 070-646 examen pratique questions et réponses

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

Les experts de Pass4Test profitent de leurs expériences et connaissances à augmenter successivement la qualité des docmentations pour répondre une grande demande des candidats, juste pour que les candidats soient permis à réussir le test Microsoft 070-646 par une seule fois. Vous allez avoir les infos plus proches de test réel à travers d'acheter le produti de Pass4Test. Notre confiance sont venue de la grande couverture et la haute précision de nos Q&As. 100% précision des réponses vous donnent une confiance 100%. Vous n'auriez pas aucun soucis avant de participer le test.

Avec la version plus nouvelle de Q&A Microsoft 070-646, réussir le test Microsoft 070-646 n'est plus un rêve très loin pour vous. Pass4Test peut vous aider à réaliser ce rêve. Le test simualtion de Pass4Test est bien proche du test réel. Vous aurez l'assurance à réussir le test avec le guide de Pass4Test. Voilà, le succès est juste près de vous.

Vous pouvez trouver un meilleur boulot dans l'industrie IT à travers d'obtenir le test Microsoft 070-646, la voie à la réussite de votre professionnel sera ouverte pour vous.

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

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

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

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

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

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

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

certification Microsoft   certification 070-646   070-646

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

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

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

Microsoft   070-646   070-646 examen   070-646

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

certification Microsoft   070-646   070-646

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

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

Microsoft   070-646   070-646 examen

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

NO.10 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   070-646   certification 070-646   070-646

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

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

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

Microsoft examen   070-646   070-646

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

Microsoft   070-646   070-646 examen

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

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

certification Microsoft   070-646   070-646   070-646

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

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

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

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

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

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

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

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

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

Dernières Microsoft 70-582 de la pratique de l'examen questions et réponses téléchargement gratuit

Le Pass4Test est un site qui peut offrir les facilités aux candidats et aider les candidats à réaliser leurs rêve. Si vous êtes souci de votre test Certification, Pass4Test peut vous rendre heureux. La haute précision et la grande couverture de la Q&A de Pass4Test vous aidera pendant la préparation de test. Vous n'aurez aucune raison de regretter parce que Pass4Test réalisera votre rêve.

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

Vous aurez le service de la mise à jour gratuite pendant un an une fois que vous achetez le produit de Pass4Test. Vous pouvez recevoir les notes immédiatement à propos de aucun changement dans le test ou la nouvelle Q&A sortie. Pass4Test permet tous les clients à réussir le test Microsoft 70-582 à la première fois.

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

Généralement, les experts n'arrêtent pas de rechercher les Q&As plus proches que test Certification. Les documentations offertes par les experts de Pass4Test peuvent vous aider à passer le test Certification. Les réponses de nos Q&As ont une précision 100%. C'est facile à obtenir le Certificat de Microsoft après d'utiliser la Q&A de Pass4Test. Vous aurez une space plus grande dans l'industrie IT.

Tant que vous avez besion de participer l'examen, nous pouvons toujours mettre à jour de matériaux à propos de test Certification Microsoft 70-582. Le guide d'étude de Pass4Test comprend les excercices de Microsoft 70-582 et la Q&A qui peut vous permetrre à réussir 100% le test Microsoft 70-582. Vous pouvez faire une meilleure préparation pour le test. D'ailleurs, la mise à jour pendant un an après vendre est gratuite pour vous.

Si vous travaillez quand même très dur et dépensez beaucoup de temps pour préparer le test Microsoft 70-582, mais ne se savez pas du tout c'est où le raccourci pour passer le test certification, Pass4Test peut vous donner une solution efficace. Vous vous sentirez magiquement jouer un effet multiplicateur.

Aujoud'hui, c'est une société de l'informatique. Beaucoup d'organisations peut provider l'outil de se former pour le test Certification Microsoft 70-582. Mais on doit admettre que ces site n'ont pas la capacité à offrir une bonne Q&A, elles sont généralement très vagues et sans les points. C'est loin d'attirer les attentions des candidats.

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

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

Microsoft   70-582   70-582 examen   certification 70-582

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

Microsoft   70-582   70-582 examen

NO.3 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 examen   certification 70-582   70-582

NO.4 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   70-582 examen   70-582   70-582 examen   70-582

NO.5 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   certification 70-582   70-582 examen   70-582

NO.6 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   70-582   70-582 examen   70-582   70-582 examen

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

Microsoft examen   70-582   certification 70-582   70-582   70-582   certification 70-582

NO.8 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   70-582   70-582   70-582

NO.9 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   certification 70-582   70-582   certification 70-582

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

certification Microsoft   70-582   70-582   70-582 examen   certification 70-582

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 70-582 avec succès. Pass4Test est un fournissur fiable. Vous allez réaliser votre rêve avec l'aide de Pass4Test.

Guide de formation plus récente de Microsoft 70-665

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

Aujourd'hui, il y a pleine de professionnels IT dans cette société. Ces professionnels sont bien populaires mais ils ont à être en face d'une grande compétition. Donc beaucoup de professionnels IT se prouver par les tests de Certification très difficile à réussir. Pass4Test est voilà pour offrir un raccourci au succès de test Certification.

Code d'Examen: 70-665
Nom d'Examen: Microsoft (PRO:Microsoft Lync Server 2010,Administrator)
Questions et réponses: 85 Q&As

Pass4Test possède un l'outil de formation particulier à propos de test Microsoft 70-665. Vous pouvez améliorer les techniques et connaissances professionnelles en coûtant un peu d'argent à courte terme, et vous preuver la professionnalité dans le future proche. L'outil de formation Microsoft 70-665 offert par Pass4Test est recherché par les experts de Pass4Test en profitant les expériences et les connaissances riches.

Beaucoup de travailleurs espèrent obtenir quelques Certificat IT pour avoir une plus grande space de s'améliorer. Certains certificats peut vous aider à réaliser ce rêve. Le test Microsoft 70-665 est un certificat comme ça. Mais il est difficile à réussir. Il y a plusieurs façons pour se préparer, vous pouvez dépenser plein de temps et d'effort, ou vous pouvez choisir une bonne formation en Internet. Pass4Test est un bon fournisseur de l'outil formation de vous aider à atteindre votre but. Selons vos connaissances à propos de Pass4Test, vous allez faire un bon choix de votre formation.

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

NO.1 You need to recommend a certificate for the external interface of the Edge pool. Which certificate should
you recommend?
A. a certificate that contains one FQDN from the internal CA
B. a certificate that contains a wildcard from the internal CA
C. a certificate that contains multiple FQDNs from a trusted third-party CA
D. a certificate that contains a wildcard from a trusted third-party CA
Answer: C

Microsoft   70-665 examen   70-665 examen   certification 70-665

NO.2 You need to recommend an Enterprise Voice solution that meets the company telephony requirements.
What should you include in the recommendation?
A. Create three User Voice Policies. In the User Voice Policies, configure the calling features and the call
types.
B. Create three Site Voice Policies. In the Site Voice Policies, configure the calling features and the call
types.
C. Create three User Voice Policies and one Site Voice Policy. In the User Voice Policies, configure the
calling features. In the Site Voice Policy, configure the call types.
D. Create three User Voice Policies and one Site Voice Policy. In the User Voice Policies, configure the
call types. In the Site Voice Policy, configure the calling features.
Answer: B

certification Microsoft   70-665   70-665   certification 70-665   certification 70-665

NO.3 You need to recommend changes to the existing environment to support the planned Lync 2010 Phone
Edition devices. What should you include in the recommendation?
A. Modifications to the DHCP options
B. Modifications to the NTP server configuration
C. Windows Server Update Services (WSUS)
D. Kerberos authentication on the Front End Servers
Answer: A

Microsoft examen   70-665   certification 70-665   70-665

NO.4 Your network contains an Active Directory forest. The functional level of both the domain and the forest
is Windows Server 2003. The forest contains the following servers:
A server that runs Microsoft Live Communications Server 2005 Service Pack 1 (SP1)
A Front End Server that runs Microsoft Office Communications Server 2007 R2
An Edge Server that runs Office Communications Server 2007 R2
A Mediation Server that runs Office Communications Server 2007 R2
An Office Communications Server 2007 Communicator Web Access (CWA) server
You plan to migrate all users to Lync Server 2010. You need to recommend changes to the network to
ensure that you can deploy Lync Server 2010 to the Active Directory forest. What should you
recommend?
A. Raise the functional level of the domain to Windows Server 2008.
B. Remove the Live Communications Server 2005 server and the CWA server.
C. Remove the CWA server and the Edge Server.
D. Raise the functional level of the forest to Windows Server 2008.
Answer: B

Microsoft   certification 70-665   70-665   70-665 examen

NO.5 You need to recommend an Enterprise Voice solution for the New York office. What should you include
in the recommendation?
A. a Response Group
B. the Attendant Console
C. a dial plan
D. an IP-PBX gateway
Answer: C

Microsoft   70-665   70-665   certification 70-665   70-665

NO.6 Topic 1, A.Datum Corporation
Company Overview
A. Datum Corporation is a market research company that has 6,000 employees.
Physical Location
The company has a main office and two branch offices. The main office is located in Seattle. The branch
offices are located in Detroit and New York. The main office has 5,000 users. The Detroit office has 900
users. The New York office has 100 users.
Remote users frequently work from locations that only allow Internet access over ports 80 and 443. The
remote users frequently work from client computers that are not joined to the domain.
Existing Environment
Network Infrastructure
The network has the following servers:
An enterprise certification authority (CA)
A DHCP server has that the following DHCP options:
o 003 Router
o 006 DNS Servers
o 015 DNS Domain Name
A Network Time Protocol (NTP) server that is configured to use the User Datagram Protocol
(UDP)
A server in the main office that runs Microsoft Office Communications Server 2007
The network has the following configurations:
All client computers run Microsoft Office Communicator 2007.
AH Internet-accessible servers are located in a perimeter network.
Microsoft Forefront Threat Management Gateway (TMG) is used to publish internal Web sites for
customers.
All servers that have Office Communications Server installed run Windows Server 2003 Service
Pack 2 (SP2).
Telephony Infrastructure
Telephony Infrastructure
The telephony infrastructure is configured as shown in the exhibit. (Click the Case Study Exhibits button.)
Requirements
Business Goals
A. Datum has the following business goals:
Minimize software costs.
Minimize hardware costs.
Minimize the amount of administrative effort required to deploy new technology solutions.
Planned Changes
A. Datum plans to migrate to Lync Server 2010 and implement the following changes:
Enable Enterprise Voice for all internal users and remote users.
In the main office, deploy devices that run Microsoft Lync 2010 Phone Edition.
Enable IM, presence, and conferencing with a federated partner company named Contoso, Ltd.
Create a Lync site for each office.
Add the primary data center and the secondary data center to the Seattle Lync site.
Technical Requirements
A. Datum must meet the following technical requirements:
The number of public IP addresses must be minimized.
The main office must support 1,000 concurrent PSTN calls.
Lync services must be available to remote users over TCP port 443.
Remote users must be able to participate in conferences and make Enterprise Voice calls.
Telephony Requirements
The telephony infrastructure must meet the requirements shown in the following table.
Each office will contain users who are assigned the Manager role and the Employees role.
Security Requirements
A. Datum must meet the following security requirements:
Federation must only be allowed with Contoso.
Lync-related traffic must not be routed over VPN connections
Availability Requirements
If a data center fails, all users in the main office must be able to perform the following tasks
Create a conference.
Place calls to the PSTN.
View the presence status of all users in the Seattle office.
If a WAN link fails, users in the Detroit office must be able to perform the following tasks:
Create a conference.
Place calls to the PSTN.
View the presence status of all users in the Detroit office.
Reference Data
The typical bandwidth utilization for various codecs is listed in the following table.
A T1 interface supports 23 concurrent calls
1.You are evaluating the use of standard gateway devices that support eight T1 interfaces each. The
gateways do not support media bypass.
You need to recommend a solution to support PSTN calls from the main office. The solution must meet
the company technical requirements. What should you include in the recommendation?
A. Deploy four gateways and a single Mediation pool that contains two servers.
B. Deploy six gateways and a single Mediation pool that contains six servers.
C. Deploy four gateways and two Mediation pools that each contains a single server.
D. Deploy six gateways and a single Mediation pool that contains two servers.
Answer: D

Microsoft   certification 70-665   70-665   70-665

NO.7 You are evaluating the implementation of a SIP trunk in the main office to support the planned Lync
Server 2010 deployment. You need to calculate the minimum amount of bandwidth required for PSTN
calls. How much bandwidth is required on the network connection to the SIP trunk?
A. 33.98 Mbps
B. 58.40 Mbps
C. 41.80 Mbps
D. 25.29 Mbps
Answer: B

certification Microsoft   70-665   70-665   70-665   70-665

NO.8 Your network has Microsoft Office Communications Server 2007 R2 installed. You migrate the Office
Communications Server 2007 R2 infrastructure to Lync Server 2010. The network contains 2,000 users
who use Microsoft Lync 2010 and 100 users who use Microsoft Office Communicator 2007 R2. The
corporate security policy states that when users sign in, they must restrict their presence information so
that it is visible to only their contacts. You need to recommend changes to the Lync Server 2010
infrastructure to meet the corporate security policy requirements. What should you include in the
recommendation?
A. a Monitoring Server and a Client Version Policy
B. Privacy Mode and a Client Version Policy
C. a Monitoring Server and a Client Version Configuration
D. Privacy Mode and a Response Group
Answer: B

Microsoft   certification 70-665   70-665   certification 70-665   70-665

NO.9 You need to recommend a backup solution for the configuration store of the Lync Server 2010
deployment. Which database should you include in the recommendation?
A. RTCLocal\rtc
B. RTCLocal\rtcdyn
C. RTC\xds
D. RTC\rtc
Answer: D

certification Microsoft   certification 70-665   certification 70-665   70-665 examen   70-665 examen   certification 70-665

NO.10 You need to recommend a Lync Server 2010 deployment solution that meets the company availability
requirements for the Detroit office. What should you recommend?
A. Deploy a Standard Edition server and a PSTN gateway in the Detroit office. Deploy an Enterprise
Edition server and a PSTN gateway in the Seattle data center. Assign the Standard Edition server as the
primary registrar. Assign the Enterprise Edition server as the backup registrar.
B. Deploy a Standard Edition server and a PSTN gateway in the Seattle data centers. Deploy a
Survivable Branch Server in the Detroit office. Assign the Survivable Branch Server as the primary
registrar. Assign the Standard Edition server as the backup registrar.
C. Deploy an Enterprise Edition server and a PSTN gateway in the Seattle data centers. Deploy a
Standard Edition server in the Detroit office. Assign the Standard Edition server as the primary registrar.
Assign the Enterprise Edition server as the backup registrar.
D. Deploy a Standard Edition server and a PSTN gateway in the Seattle data centers. Deploy a
Survivable Branch Appliance (SBA) in the Detroit office. Assign the SBA as the primary registrar. Assign
the Standard Edition server as the backup registrar.
Answer: A

Microsoft examen   certification 70-665   70-665

Pass4Test est un bon catalyseur du succès pour les professionnels IT. Beaucoup de gens passer le test Microsoft 70-665 avec l'aide de l'outil formation. Les experts profitent leurs expériences riches et connaissances à faire sortir la Q&A Microsoft 70-665 plus nouvelle qui comprend les exercices de pratiquer et le test simulation. Vous pouvez passer le test Microsoft 70-665 plus facilement avec la Q&A de Pass4Test.