What Active Directory Domain Services role feature can be used to replace passwords with a two-step authentication process that combines verifying a device is enrolled in the domain and that the device has a personal identification number?

A. LDAP Identity Management
B. LDAP TwoStep
C. ADS TwoAuth
D. Microsoft Passport


Answer: D

Computer Science & Information Technology

You might also like to view...

The ________ operating system is free and open source

Fill in the blank(s) with correct word

Computer Science & Information Technology

A green upward pointing arrow icon in a range of cells can be used to represent a higher value

Indicate whether the statement is true or false

Computer Science & Information Technology

Which of the following is not a popular Web browser?

a. Firefox b. Sonata c. Google Chrome d. Safari

Computer Science & Information Technology

Consider the following function to calculate the nth Fibonacci number:long fib (long num){    if (num == 0 || num == 1)        return num;    return (fib (num - 1) + fib (num - 2));}What is(are) the base case(s)?

A. 0 B. 1 C. 0 and 1 D. num - 1

Computer Science & Information Technology