Multiple choice

Which of the following methods is not present in the HttpCookie class in java?

  1. getPath()

  2. getValue()

  3. isHttpOnly()

  4. getMaximumAge()

  5. clone()

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

This is the correct choice. There is no method named getMaximumAge() in HttpCookie class. The correct method name is getMaxAge(). This method returns the maximum age of the cookie, specified in seconds.