exam questions

Exam MS-720 All Questions

View all questions & answers for the MS-720 exam

Exam MS-720 topic 2 question 9 discussion

Actual exam question from Microsoft's MS-720
Question #: 9
Topic #: 2
[All MS-720 Questions]

HOTSPOT -
Your company is migrating from a legacy PBX system to Microsoft Teams.
The phone number range is + 1-423-555-1xxx. The PBX system uses four-digit dialing internally. Extensions are the last four digits of the number.
You need to ensure that you can use four-digit dialing for your numbers in Teams. The solution must minimize administrative effort.
How should you configure the normalization rule? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:

Show Suggested Answer Hide Answer
Suggested Answer:
Box 1: +14235551\d{3}
Need to string away + 1-423-555-1, and keep only 3 digits.
Example:
New-CsTeamsTranslationRule -Identity 'AddPlus1' -Pattern '^(\d{10})$' -Translation '+1$1'
This example creates a rule that strips +1 from any E.164 eleven digits number. For example, +12065555555 will be translated to 206555555
Example 2:
New-CsTeamsTranslationRule -Identity 'StripE164SeattleAreaCode' -Pattern '^\+1206555(\d{4})$' -Translation '$1'
This example creates a rule that strips +1206555 from any E.164 ten digits number. For example, +12065555555 will be translated to 5555

Box 2: +1423555$1 -
Keep the 3 digits. Add one digit with the translation.
Teams phone pattern translation example
Reference:
https://docs.microsoft.com/en-us/powershell/module/skype/new-csteamstranslationrule

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
beermania
Highly Voted 2 years, 6 months ago
Should be: Pattern: ^(1\d{3})$ The pattern means: Starting with '1' followed by any number, matching it 3 times. Translation: +1423555$1 The Translation means: If the pattern is true or a match, replace it with +1423555 and the value inside the 1st captured group (1\d{3}) = (all characters captured inside this parenthesis)
upvoted 20 times
aubgouth2
2 years, 6 months ago
Agreed
upvoted 4 times
...
...
Blackhawk676
Highly Voted 2 years, 6 months ago
Exactly. Pattern should be Pattern: ^(1\d{3})$
upvoted 6 times
...
wanapass
Most Recent 2 years, 6 months ago
Pattern should be Pattern: ^(1\d{3})$
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago