GSLC · Question #357
Which of the following contains information that is read by a Web application whenever a user visits a site?
The correct answer is B. Cookie. Cookies are small data files stored by browsers that web applications read on each visit to maintain session state and user preferences.
Question
Which of the following contains information that is read by a Web application whenever a user visits a site?
Options
- APII
- BCookie
- CRootkit
- DDiD
How the community answered
(42 responses)- A5% (2)
- B90% (38)
- C2% (1)
- D2% (1)
Why each option
Cookies are small data files stored by browsers that web applications read on each visit to maintain session state and user preferences.
PII (Personally Identifiable Information) is a classification category for sensitive data about individuals, not a file or mechanism that web applications read on site visits.
A cookie is a small piece of data sent by a web server to a user's browser, which stores it and automatically sends it back on subsequent requests to the same site. Web applications read cookies to maintain session tokens, authentication state, and user preferences, making them the primary mechanism for stateful web interactions.
A rootkit is malware that provides persistent, hidden privileged access to a compromised system and has no role in normal web application data exchange.
DiD (Defense in Depth) is a layered security strategy concept, not a data storage or retrieval mechanism used by web applications.
Concept tested: Browser cookies and web session state management
Source: https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies
Topics
Community Discussion
No community discussion yet for this question.