What is the function of the 'User-Agent' string sent inside an HTTP request header to a remote web server? MCQ with Answer and Explanation

What is the function of the 'User-Agent' string sent inside an HTTP request header to a remote web server?
A. To identify the specific browser application, version, and operating system of the client to the server
B. To specify the physical routing coordinates of the local ISP link
C. To transmit the user's encrypted master system password
D. To check local hardware device temperature metrics
Answer: Option A
Solution (By JKExamLibrary)
The User-Agent header string acts as a technical badge, telling the web server what browser software and operating system the client is using so it can tailor content compatibility.

This question belongs to: Computer Internet and Web Technologies

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Internet and Web Technologies Questions

Question #1 Report Error
What is the function of a web browser?
A. To request and display web pages
B. To manage email
C. To host websites
D. To store web pages

Correct Answer: Option A


Explanation:
A web browser is a client-side application that sends HTTP requests to web servers and renders the received web pages for the user.

This question belongs to: Computer Internet and Web Technologies
Question #2 Report Error
What mechanism does a web application employ to securely preserve user identity state variables on the server side, linking them via a unique ID stored in a client cookie?
A. DNS Reverse Routing
B. Local Storage Matrix
C. Server Session Management
D. FTP File Buffer

Correct Answer: Option C


Explanation:
Session management saves detailed user states securely on the server and provides the client a temporary session identifier token to reference on subsequent visits.

This question belongs to: Computer Internet and Web Technologies
Question #3 Report Error
What is the role of a cookie in maintaining sessions?
A. To encrypt session data
B. To store user data on the server
C. To store a session identifier on the client
D. To authenticate the user directly

Correct Answer: Option C


Explanation:
Cookies often contain a session ID that is sent to the server with each request, allowing the server to associate the request with a specific user session.

This question belongs to: Computer Internet and Web Technologies