70-158 · Question #23
Your company network includes Forefront Identity Manager (FIM) 2010. The FIM server has the following XPath query: /Request[Target = /Group[Type = 'Security'] and Operation = 'Put' and CreatedTime…
The correct answer is D. To identify requests made to modify a security group within the last 7 days. The XPath query identifies Forefront Identity Manager (FIM) requests whose target is a security group, the operation is a 'Put' (create or modify), and the request itself was initiated within the last seven days.
Question
Options
- ATo identify security groups created within the last 7 days.
- BTo identify security groups modified within the last 7 days.
- CTo identify requests made to modify a security group more than 7 days ago.
- DTo identify requests made to modify a security group within the last 7 days.
How the community answered
(50 responses)- A6% (3)
- B22% (11)
- C12% (6)
- D60% (30)
Why each option
The XPath query identifies Forefront Identity Manager (FIM) requests whose target is a security group, the operation is a 'Put' (create or modify), and the request itself was initiated within the last seven days.
This choice incorrectly states the query identifies security groups directly, and 'Put' can also mean modify, not exclusively create.
This choice incorrectly states the query identifies security groups directly, rather than requests targeting security groups.
The 'CreatedTime >= ...' condition means 'within the last 7 days', not 'more than 7 days ago'.
The query begins with '/Request', indicating it targets request objects. 'Target = /Group[Type = 'Security']' specifies that the request's target is a security group, and 'Operation = 'Put'' signifies a modification or creation action. The condition 'CreatedTime >= op:subtract-dayTimeDuration-from-dateTime(fn:current-dateTime(), xs:dayTimeDuration('P7D'))' precisely filters for requests created within the last 7 days.
Concept tested: FIM XPath query for request filtering
Topics
Community Discussion
No community discussion yet for this question.