Which two tasks should you perform?

Your company has a telephone number range of (425) 555-1200 to (425) 555-1299.
The country code is 1. The network has Lync Server 2010 deployed.
You need to create a normalization rule for four-digit extension dialing that normalizes extensions to E.164 format.
Which two tasks should you perform? (Each correct answer presents part of the solution. Choose two.)

Your company has a telephone number range of (425) 555-1200 to (425) 555-1299.
The country code is 1. The network has Lync Server 2010 deployed.
You need to create a normalization rule for four-digit extension dialing that normalizes extensions to E.164 format.
Which two tasks should you perform? (Each correct answer presents part of the solution. Choose two.)

A.
Set the translation rule to +1425555$1.

B.
Set the translation rule to +142555512$1.

C.
Set the translation pattern to match ^4(d{12})$.

D.
Set the translation pattern to match A 12(d{2})$.

Explanation:
http://technet.microsoft.com/en-us/library/gg413082.aspx



Leave a Reply 8

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


vito

vito

Should be A and D.
Otherwise you’ll get 2 twelves in a row.
Check link under explanation.

mr_tienvu

mr_tienvu

I agreed with vito.
The answers Should be A & D.

Talito

Talito

Sorry, I DISAGREE…juts the fact that translation rules always start with a “^” sign tells me that A and C is correct

morbo

morbo

Yup, A and D is correct, confirmed using normalization rule wizard in Lync.
Notice the typo, the “A” should read “^” like this:
Pattern to match: ^(12\d{2})$
Translation rule: +14255555$1

luffy

luffy

it’s B and D
there is a huge difference between ^(12\d{2}) & ^12(\d{2}):
first one==> adds 4 digits to translation rule
second one==> adds 2 digits to translation rule by supressing the “12” suffix (see second example in the Table in http://technet.microsoft.com/en-us/library/gg413082.aspx )
so with A & D if someone dials 1245 he will have +142555545
with B & D he will have +14255551245

saoueel

saoueel

So it’s A+D or B+D????

Dretech

Dretech

I think Luffy is correct. pattern 12(d{2})$ wil supress the dialed 12 so there is no 2 series of 12’s. B&D should be correct.

Justen

Justen

B is incorrect…4 digit extension…b will make the number 13 digits. A is correct.