What is the membership of Group1 and Group2?

HOTSPOT
What is the membership of Group1 and Group2? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:

microsoft-exams

5 thoughts on “What is the membership of Group1 and Group2?

  1. Please look carefully at my response, do not be eager to add you thoughts before understanding the previous thought.

    I said, for Group2, the Dynamic membership rule – user.city -match “*on” is not valid, and would not be accepted during the configuration.

    However:
    1. (user.city -match “.*on”) on the hand is valid, true for London, Montreal, weirdly so it is also true for Ontario.
    2. (user.city -match “ON.*”) is also valid, true for London, Montreal, and as expected Ontario.
    3. (user.city -match “on*”) this is also valid and true for London, Montreal, and as expected Ontario.

    Take your time to read through.

    1
    1
  2. Using the -match operator
    The -match operator is used for matching any regular expression. Examples:

    user.displayName -match “Da.*”
    Da, Dav, David evaluate to true, aDa evaluates to false.

    user.displayName -match “.*vid”
    David evaluates to true, Da evaluates to false.

  3. Group 1 : User1, User2, User3 and User4
    Group 2 : No Member

    For Group2, the Dynamic membership rule – user.city -match “*on” is not valid, and would not be accepted during the configuration.

    2
    2
    1. Using the -match operator
      The -match operator is used for matching any regular expression. Examples:

      user.displayName -match “Da.*”
      Da, Dav, David evaluate to true, aDa evaluates to false.

      user.displayName -match “.*vid”
      David evaluates to true, Da evaluates to false.

  4. Answer should

    Group 1 : User1, User2, User3 and User4
    Group 2 : User1, User2, User3 and User4

    1
    10

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.