A web developer wants to identify why a web page is loading slowly. Which built-in browser tool is most appropriate to analyze network requests?
Developer Tools provide network analysis and performance metrics.
Why this answer
Developer Tools (F12) include a Network tab that captures all HTTP/HTTPS requests made by the page, showing timing details (DNS lookup, TCP handshake, TLS negotiation, time to first byte, content download) and response sizes. This allows the developer to pinpoint slow resources, such as large images, unoptimized scripts, or server delays, making it the correct tool for analyzing network performance.
Exam trap
The trap here is that candidates confuse the general-purpose 'Developer Tools' with other browser utilities that have 'manager' in their name, assuming any 'manager' can handle performance analysis, when only Developer Tools provides the network waterfall and timing breakdowns.
How to eliminate wrong answers
Option A is wrong because a password manager stores and autofills credentials; it has no capability to monitor or analyze network traffic. Option C is wrong because a download manager handles file downloads from the browser but does not provide a timeline or waterfall view of all page resources. Option D is wrong because a bookmark manager organizes saved URLs and cannot inspect request/response headers, status codes, or load times.