Dynamic Web Page Development (3350702) MCQs

MCQs of Working with PHP Arrays and functions

Showing 31 to 40 out of 59 Questions
31.

What will be the output of the following PHP code?

(નીચેના PHP કોડનું આઉટપુટ શું હશે?)

(a)

Array ( [0] => red [1] => green [2] => blue [3] => yellow )

(b)

Array ( [0] => blue [1] => yellow [2] => red [3] => green )

(c)

Array ( [0] => red [1] => green )

(d)

Array ( [0] => blue [1] => yellow )

Answer:

Option (a)

32.

What will be the output of the following PHP code?

(નીચેના PHP કોડનું આઉટપુટ શું હશે?)

(a)

Array ( [0] => peach )

(b)

Array ( [0] => apple [1] => mango [2] => peach )

(c)

Array ( [0] => apple [1] => mango )

(d)

Array ( [0] => peach [1] => pear [2] => orange )

Answer:

Option (d)

33.

Which in-built function will add a value to the end of an array?

(ક્યા ઇન-બિલ્ટ ફંક્શન એરેના અંતમાં કોઈ મૂલ્ય ઉમેરશે?)

(a)

array_unshift()

(b)

into_array()

(c)

 inend_array()

(d)

 array_push()

Answer:

Option (d)

34.

Which in-built function will remove the last element of an array?

(ક્યા ઇન-બિલ્ટ ફંક્શન એરેના છેલ્લા એલિમેંટને remove કરશે?)

(a)

into_array()

(b)

 array_push()

(c)

 array_pop()

(d)

 inend_array()

Answer:

Option (c)

35.

A function name cannot start with a ________.

(ફંકશનનું નામ ________ થી શરૂ થઈ શકતું નથી.)

(a)

alphabet

(b)

underscore

(c)

number

(d)

both alphabet and underscore

Answer:

Option (c)

36.

What will be the output of the following PHP code?

(નીચેના PHP કોડનું આઉટપુટ શું હશે?)

(a)

24

(b)

8

(c)

6

(d)

Error: to many argument

Answer:

Option (c)

37.

What will happen in this function call?

(આ ફંકશન call માં શું થશે?)

(a)

Call By Value

(b)

Call By Reference

(c)

Default Argument Value

(d)

Type Hinting

Answer:

Option (a)

38.

Which one of the following property scopes is not supported by PHP?

(નીચેનામાંથી ક્યો પ્રોપર્ટી સ્કોપ્સ PHP દ્વારા સપોર્ટેડ નથી?)

(a)

public

(b)

final

(c)

friendly

(d)

static

Answer:

Option (c)

39.

A variable declared within a function has a local scope and can only be accessed _______ .

(ફંક્શનની અંદર declare કરાયેલ વેરીએબલનો local scope હોય છે અને તેને _______ જ વાપરી શકાય છે.)

(a)

within that function

(તે ફંકશનની અંદર)

(b)

outside that function

(તે ફંકશનની બહાર)

(c)

anywhere that function

(ફંકશનમાં ગમે ત્યાં)

(d)

Both within that function and outside that function

(ફક્ત ફંકશન અંદર અને બહાર બંને જગ્યાએ)

Answer:

Option (a)

40.

Why trim() function is used in php?

( trim() ફંક્શનનો ઉપયોગ php માં કેમ થાય છે?)

(a)

 to remove underscore

(અન્ડરસ્કોર દૂર કરવા)

(b)

to remove uppercase alphabet

(uppercase alphabet દૂર કરવા માટે)

(c)

to remove lowercase alphabet

(lowercase alphabet દૂર કરવા માટે)

(d)

to remove whitespaces

(whitespaces દૂર કરવા માટે)

Answer:

Option (d)

Showing 31 to 40 out of 59 Questions