Which one of the following is the very first task executed by a session enabled page?

Question:  Which one of the following is the very first task executed by a session enabled page?

A   Delete the previous session

B   Start a new session

C    Check whether a valid session exists

D   Handle the session

Answer:  Check whether a valid session exists

 

Task executed by a session enabled page          Description
Check whether a valid session exists·        The page typically checks if a valid session exists for the user.
Starting a new session·        The page may start a new session for the user If no valid session exists.
Restoring the session data·        In case of a valid session, the page may restore session data and state.
Handle the previous session·        The page manages the session, including storing and retrieving session data and updating session variables.
Perform user-specific tasks·        The page may perform tasks based on the user’s session data.
Updating session data·        During the user’s interaction with the page, session data may be updated to reflect changes in the user’s state.
Implement session timeout·        A session-enabled page may have a mechanism to expire a session after a period of inactivity.
End of the session·        The page may perform tasks to close and invalidate the session when the session is ended.