PrepAway - Latest Free Exam Questions & Answers

You need to ensure that employees and contractors matching this attribute are connected to the metaverse as pe

You use Forefront Identity Manager (FIM) 2010 in your company network. The following projection rule is used
to map disconnector objects.
Public Function ShouldProjectToMV(ByVal csentry As CSEntry, _ ByRef MVObjectType As String) As Boolean
Implements _ IMASynchronization.ShouldProjectToMV
{
Select Case csentry(“employeeType”).Value.ToLower;
Case “employee”: ShouldProjectToMV = False;
Case “externalcontractor”: MVObjectType = “contact”; ShouldProjectToMV = True;
Case “temporary” : ShouldProjectToMV = False;
Case Else: Throw New UnexpectedDataException(“Unexpected employeeType=” _ & csentry
(“employeeType”).Value)
End Select
End Function
You need to ensure that employees and contractors matching this attribute are connected to the metaverse as
person objects. You also need to ensure that external contractors are connected as contact objects.
What should you do? (Choose all that apply.)

PrepAway - Latest Free Exam Questions & Answers

A.
Add MVObjectType = “person” to the employee case.

B.
Append the search string for “contractor” to the externalcontractor case.

C.
Append the search string for “contractor” to the employee case.

D.
Set ShouldProjectToMV = False for the externalcontractor case.

E.
Set ShouldProjectToMV = True for the employee case.

F.
Change csentry(“employeeType”) to csentry(“person”).

G.
Change the MVObjectType from “contact” to “person” for the externalcontractors case.

Explanation:
Formatted the code as best as possible. Original was ACE but I’m really not sure about C


Leave a Reply