A cognitive password is an example of which of the following?
A. Something you know knowledge-based authentication
B. Something you have authentication
C. Something you are authentication
D. Something you want authentication
Answer: A
Explanation: Passwords, PINs, and cognitive passwords are example of something you know authentication.
You might also like to view...
The largest WAN in existence is the ____.
A. World Wide Web B. Usenet C. Internet D. client server
Consider array items, which contains the values 0, 2, 4, 6 and 8. If method changeArray is called with the method call changeArray(items, items[2]), what values are stored in items after the method has finished executing?
``` public static void changeArray(int[] passedArray, int value) { passedArray[value] = 12; value = 5; } ``` a. 0, 2, 5, 6, 12. b. 0, 2, 12, 6, 8. c. 0, 2, 4, 6, 5. d. 0, 2, 4, 6, 12.