98-372 · Question #32
You are creating an application using .NET Framework 4.0. In the application, which of the following will you use to determine whether or not a principal is allowed to perform a requested action?
The correct answer is D. Authorization. Authorization determines whether or not a principal is allowed to perform a requested action. It occurs after authentication. Authorization is a process that verifies whether a user has permission to access a Web resource. A Web server can restrict access to some of its resources
Question
You are creating an application using .NET Framework 4.0. In the application, which of the following will you use to determine whether or not a principal is allowed to perform a requested action?
Options
- AAuthentication
- BPrincipal
- CSecurity policy
- DAuthorization
How the community answered
(28 responses)- A11% (3)
- B4% (1)
- C7% (2)
- D79% (22)
Explanation
Authorization determines whether or not a principal is allowed to perform a requested action. It occurs after authentication. Authorization is a process that verifies whether a user has permission to access a Web resource. A Web server can restrict access to some of its resources to only those clients that log in using a recognized username and password. To be authorized, a user must first be authenticated. Answer: A is incorrect. Authentication discovers and verifies the identity of a principal. It examines and validates a user's credentials. Answer: B is incorrect. A principal represents the identity and role of a user. Answer: C is incorrect. A security policy is a configurable set of rules. It programmatically generates granted permissions.
Topics
Community Discussion
No community discussion yet for this question.