Why should you clear the cache when the browser is closed?

What will be an ideal response?

Web browsers store pages, images, and downloaded content to a temporary area (cache) when visiting websites. This allows the browser to speed up access to sites by loading pages from the cache rather than downloading content again when returning to a site. Over time a cache may consume a large amount of hard drive storage space and even cause the browser to slow down. The browser's cache should be cleared on a regular basis. It also can protect privacy since it deletes stored content and information.

Computer Science & Information Technology

You might also like to view...

Outline the design of a QoS manager to enable desktop computers connected by an ATM network to support several concurrent multimedia applications. Define an API for your QoS manager, giving the main operations with their parameters and results.

What will be an ideal response?

Computer Science & Information Technology

What is the output of the following code?

``` inline void print(int i) { cout << i << endl; } int main() { print(1); inline void print(int i) { cout << i << endl; } int main() { print(1); return 0; } /code} A. max is 2 B. max is 0 C. max is D. max is 1

Computer Science & Information Technology