Dynamic Web Page Development (3350702) MCQs

MCQs of User data input through Forms

Showing 21 to 30 out of 46 Questions
21.

In which HTML form controls, allow for multiple items to be selected for a certain group of choices?

(કયા HTML ફોર્મ નિયંત્રણોમાં, પસંદગીઓના ચોક્કસ જૂથ માટે બહુવિધ આઇટમ્સ પસંદ કરવાની મંજૂરી આપે છે?)

(a)

checkbox

(b)

radio button

(c)

textarea

(d)

password

Answer:

Option (a)

22.

$GLOBALS, $_SERVER, $_REQUEST, $_POST, $_GET, $_FILE, $_COOKIE, $_SESSION are all the example of what?

($GLOBALS, $_SERVER, $_REQUEST, $_POST, $_GET, $_FILE, $_COOKIE, $_SESSION આ બધા શેના ઉદાહરણ છે?)

(a)

Super array

(b)

Global variables

(c)

Local variables

(d)

Static variables

Answer:

Option (b)

23.

 PHP uses what to access global variables anywhere from the script?

(સ્ક્રિપ્ટમાંથી કોઈપણ જગ્યાએ ગ્લોબલ વેરીએબલ એક્સેસ કરવા માટે PHP શેનો નો ઉપયોગ કરે છે?)

(a)

Get and Post Methods

(b)

Functions

(c)

Superglobal Arrays

(d)

Request Method

Answer:

Option (c)

24.

Which one of the following is not true regarding GET method in HTML?

(HTMLની GET મેથડને લગતી નીચેનામાંથી કયું સાચું નથી?)

(a)

Use of GET method in HTML is more secured.

(HTMLમાં GET મેથડનો ઉપયોગ વધુ secure છે.)

(b)

Use of GET method enables us to bookmark the page.

(GET મેથડનો ઉપયોગ પેજને બુકમાર્ક કરવા માટે થાય છે.)

(c)

GET has size limitation.

(GET ની size limination છે.)

(d)

Used for sending non-sensitive data.

(Non-sensitive ડેટા મોકલવા માટે વપરાય છે.)

Answer:

Option (a)

25.

Which one of the following is not true regarding POST method in HTML?

(HTMLની POST મેથડને લગતી નીચેનામાંથી કયું સાચું નથી?)

(a)

Use of POST method in HTML is more secured.

(HTML માં POST મેથડનો ઉપયોગ વધુ secure છે.)

(b)

Use of POST method enables us to bookmark the page.

(POST મેથડનો ઉપયોગ પેજને બુકમાર્ક કરવા માટે થાય છે.)

(c)

POST has no size limitation.

(POST ની size limination નથી.)

(d)

Used for sending sensitive data.

(Sensitive ડેટા મોકલવા માટે વપરાય છે.)

Answer:

Option (b)

26.

How do you get information from a form that is submitted using the "get" method?

("Get" મેથડનો ઉપયોગ કરીને સબમિટ કરેલા ફોર્મમાંથી તમે કેવી રીતે માહિતી મેળવી શકશો?)

(a)

$_GET[];  

(b)

Request.QueryString;

(c)

Request.Form;

(d)

$_GET();  

Answer:

Option (a)

27.

When using the POST method, variables are displayed in the URL.

(જ્યારે POST મેથડનો ઉપયોગ કરતી વખતે, વેરીએબલ URL માં ડિસ્પ્લે થાય છે.)

(a)

TRUE

(b)

FALSE

Answer:

Option (b)

28.

When you use the $_GET variable to collect data, the data is visible to ___________.

(જ્યારે તમે ડેટા કલેક્ટ કરવા માટે $ _GET વેરીએબલનો ઉપયોગ કરો છો, ત્યારે ડેટા ___________ ને visible છે.)

(a)

none

(b)

only you

(c)

everyone

(d)

selected few

Answer:

Option (c)

29.

 Which variable is used to collect form data sent with both the GET and POST methods?

(GET અને POST બંને મેથડઓ સાથે મોકલવામાં આવેલા ફોર્મ ડેટાને કલેક્ટ કરવા માટે કયા વેરિએબલનો ઉપયોગ થાય છે?)

(a)

$BOTH

(b)

$_BOTH

(c)

$REQUEST

(d)

$_REQUEST

Answer:

Option (d)

30.

Which one of the following should not be used while sending passwords or other sensitive information?

(પાસવર્ડ્સ અથવા બીજી સેન્સિટિવ માહિતી મોકલતી વખતે નીચેનામાંથી શેનો ઉપયોગ ન કરવો જોઇએ?)

(a)

GET

(b)

POST

(c)

REQUEST

(d)

NEXT

Answer:

Option (a)

Showing 21 to 30 out of 46 Questions