H12-725_V4.0 · Question #21
If you want to control users' forum postings, user logins, etc., which of the following HTTP behavior controls should be configured?
The correct answer is A. POST operation. POST operation (A) is correct because HTTP POST is the method used to submit data from a client to a server - forum posts, login credentials, and form submissions all send user-supplied data to be processed, stored, or authenticated on the server side. Configuring POST…
Question
If you want to control users' forum postings, user logins, etc., which of the following HTTP behavior controls should be configured?
Options
- APOST operation
- BRedirect
- CFile upload
- DFile download
How the community answered
(55 responses)- A82% (45)
- B11% (6)
- C5% (3)
- D2% (1)
Explanation
POST operation (A) is correct because HTTP POST is the method used to submit data from a client to a server - forum posts, login credentials, and form submissions all send user-supplied data to be processed, stored, or authenticated on the server side. Configuring POST operation controls lets administrators manage what data users can submit and how it's handled.
Redirect (B) is wrong because it simply forwards a browser from one URL to another - it doesn't process or control submitted user data. File upload (C) is a specific type of POST, but it refers narrowly to transferring binary files (images, documents), not general form data like logins or text posts. File download (D) is an HTTP GET-based operation for retrieving content from the server, the opposite direction of what user submissions require.
Memory tip: Think "POST = user pushes data to the server." Any time a user sends something - a login, a comment, a registration - it's a POST. If you're controlling what users submit, you're controlling POST behavior.
Topics
Community Discussion
No community discussion yet for this question.