1. Question:How does the session data store in computer? 

    Answer
    Session data can be stored in four ways: 
    1. Within flat failes (files),
    2. Within volatile memory (mm),
    3. Using the SQLite database (sqlite), or
    4. Through user-defined functions (user).

    1. Report
  2. Question:Why HTTP is called stateless protocol? 

    Answer

    HTTP is called stateless protocol because each request is processed without any knowledge of any prior or future requests.

    1. Report
  3. Question:How many ways session handling can be done? 

    Answer
    Session handling can be handled with the following:

     1. Use of cookies : the practice of storing bits of information on the client's machine.
     2. Use of session ID(SID) : Assigning each site visitor a unique identifying attribute.

    1. Report
  4. Question:What is the difference between characters \034 and \x34? 

    Answer
    \034 is octal 34 and \x34 is hex 34.

    1. Report
Copyright © 2024. Powered by Intellect Software Ltd