203k views
2 votes
Which of the following statements is not true of web storage?

You can store up to 5MB of data.

It’s supported by every modern browser.

You can store data indefinitely or for the browser session.

The data in web storage is passed to the server with every HTTP request.

User Hutjepower
by
6.4k points

1 Answer

7 votes

Answer:

The data in web storage is passed to the server with every HTTP request.

Step-by-step explanation:

There are basically two Web storage APIs Session storage and local storage.Both can store data up to 5MB. They are supported by every modern browser.You can store data in local storage indefinitely and for browser session in session storage.There is no data or information in HTTP request header.So we conclude that option 4 is the answer.

User Pratheesh M
by
6.2k points