Computer Science Engineering (CSE) Exam  >  Computer Science Engineering (CSE) Test  >  Computer Networks  >  Test: Cookies - Computer Science Engineering (CSE) MCQ

Cookies - Free MCQ Practice Test with solutions, GATE CSE (CSE) Computer


MCQ Practice Test & Solutions: Test: Cookies (10 Questions)

You can prepare effectively for Computer Science Engineering (CSE) Computer Networks with this dedicated MCQ Practice Test (available with solutions) on the important topic of "Test: Cookies". These 10 questions have been designed by the experts with the latest curriculum of Computer Science Engineering (CSE) 2026, to help you master the concept.

Test Highlights:

  • - Format: Multiple Choice Questions (MCQ)
  • - Duration: 10 minutes
  • - Number of Questions: 10

Sign up on EduRev for free to attempt this test and track your preparation progress.

Test: Cookies - Question 1

Cookies were originally designed for

Detailed Solution: Question 1

Answer: b
Explanation: Cookies were originally designed for server side programming, and at the lowest level, they are implemented as an extension to the HTTP protocol.

Test: Cookies - Question 2

The Cookie manipulation is done using which property?

Detailed Solution: Question 2

Answer: a
Explanation: There are no methods involved: cookies are queried, set, and deleted by reading and Writing the cookie property of the Document object using specially formatted strings.

Test: Cookies - Question 3

Which of the following explains Cookies nature?

Detailed Solution: Question 3

Answer: d
Explanation: Cookies are transient by default; the values they store last for the duration of the web browser session but are lost when the user exits the browser.

Test: Cookies - Question 4

Which attribute is used to extend the lifetime of a cookie?

Detailed Solution: Question 4

Answer: c
Explanation: If you want a cookie to last beyond a single browsing session, you must tell the browser how long (in seconds) you would like it to retain the cookie by specifying a manage
attribute. If you specify a lifetime, the browser will store cookies in a file and delete them only once they expire.

Test: Cookies - Question 5

Which of the following defines the Cookie visibility?

Detailed Solution: Question 5

Answer: d
Explanation: Cookie visibility is scoped by document origin as local Storage and session Storage are, and also by document path.

Test: Cookies - Question 6

Which of the following can be used to configure the scope of the Cookie visibility?

Detailed Solution: Question 6

Answer: d
Explanation: The Cookie visibility scope is configurable through cookie attributes path and domain.

Test: Cookies - Question 7

How can you set a Cookie visibility scope to local Storage?

Detailed Solution: Question 7

Answer: a
Explanation: Setting the path of a cookie to “/” gives scoping like that of localStorage and also specifies that the browser must transmit the cookie name and value to the server whenever it requests any web page on the site.

Test: Cookies - Question 8

 Which of the following is a Boolean cookie attribute?

Detailed Solution: Question 8

Answer: b
Explanation: The final cookie attribute is a boolean attribute named secure that specifies how cookie values are transmitted over the network. By default, cookies are insecure, which means that they are transmitted over a normal, insecure HTTP connection. If a cookie is marked secure, however, it is transmitted only when the browser and server are connected via HTTPS or another secure protocol.

Test: Cookies - Question 9

Which of the following function is used as a consequence of not including semicolons,Commas or whitespace in the Cookie value?

Detailed Solution: Question 9

Answer: a
Explanation: Cookie values cannot include semicolons, commas, or whitespace. For this reason, you may want to use the core JavaScript global function encodeURIComponent() to encode the value before storing it in the cookie.

Test: Cookies - Question 10

What is the constraint on the data per cookie?

Detailed Solution: Question 10

Answer: c
Explanation: Each cookie can hold upto only 4 KB. In practice, browsers allow many more than 300 cookies total, but the 4 KB size limit may still be enforced by some.

21 videos|147 docs|66 tests
Information about Test: Cookies Page
In this test you can find the Exam questions for Test: Cookies solved & explained in the simplest way possible. Besides giving Questions and answers for Test: Cookies, EduRev gives you an ample number of Online tests for practice
21 videos|147 docs|66 tests
Download as PDF