Top 350+ Solved Advance PHP MCQ Questions Answer
Q. Before the browser sends the information to the server , it encodes it using a schemecalled URL.Sol:
a. yes
b. no
c. can not say
d. none of these.
Q. The-----method produces a long string that appears in your server logs, in the browser'sLocationSol:
a. GET
b. ?
c. POST
d. QUERY_STRING
Q. The-----method is restricted to send upto 1024 characters onlySol:
a. GET
b. ?
c. POST
d. QUERY_STRING
Q. Never use-----method if you have password or other sensitive information to be sent tothe server.Sol:
a. GET
b. ?
c. POST
d. QUERY_STRING
Q. ------can't be used to send binary data, like images or word documents, to the serverSol:
a. GET
b. ?
c. POST
d. QUERY_STRING
Q. The data sent by GET method can be accessed using-------environment variable.Sol:
a. GET
b. ?
c. POST
d. QUERY_STRING
Q. The PHP provides-------associative array to access all the sent information using GETmethod.Sol:
a. $_GET
b. $_POST
c. POST
d. QUERY_STRING
Q. PHP------is a PHP super global variable which is used to collect form data aftersubmitting an HTML form with method="get".Sol:
a. $_GET
b. $_POST
c. POST
d. QUERY_STRING
Q. The-----method transfers information via HTTP headers.Sol:
a. $_GET
b. $_POST
c. POST
d. QUERY_STRING
Q. The information is encoded as described in case of GET method and put into a headercalled-----------.Sol:
a. $_GET
b. $_POST
c. POST
d. QUERY_STRING
Q. The----------method does not have any restriction on data size to be sent.Sol:
a. $_GET
b. $_POST
c. POST
d. QUERY_STRING
Q. The-----------method can be used to send ASCII as well as binary dataSol:
a. $_GET
b. $_POST
c. POST
d. QUERY_STRING
Q. The PHP provides----------associative array to access all the sent information usingPOST method.Sol:
a. $_GET
b. $_POST
c. POST
d. QUERY_STRING