Session Handling
1.

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

2.

How many ways can a session data be stored?

A.  

3

B.  

4

C.  

5

D.  

6

3.

Which directive determines how the session information will be stored?

A.  

save_data

B.  

session.save

C.  

session.save_data

D.  

session.save_handler

4.

Which one of the following is the default PHP session name?

A.  

PHPSESSID

B.  

PHPSESID

C.  

PHPSESSIONID

D.  

PHPIDSESS

5.

If session.use_cookie is set to 0, this results in use of _____________

A.  

Session

B.  

Cookie

C.  

URL rewriting

D.  

Nothing happens

6.

If the directive session.cookie_lifetime is set to 3600, the cookie will live until ____________

A.  

3600 sec

B.  

3600 min

C.  

3600 hrs

D.  

the browser is restarted

7.

Neglecting to set which of the following cookie will result in the cookie’s domain being set to the host name of the server which generated it.

A.  

session.domain

B.  

session.path

C.  

session.cookie_path

D.  

session.cookie_domain

8.

What is the default number of seconds that cached session pages are made available before the new pages are created?

A.  

360

B.  

180

C.  

3600

D.  

1800

9.

What is the default time(in seconds) for which session data is considered valid?

A.  

1800

B.  

3600

C.  

1440

D.  

1540

10.

Which one of the following function is used to start a session?

A.  

start_session()

B.  

session_start()

C.  

session_begin()

D.  

begin_session()