Dynamic Web Page Development (3350702) MCQs

MCQs of Working with PHP Arrays and functions

Showing 41 to 50 out of 59 Questions
41.

When two strings are exactly equivalent strcmp() returns what?

(જ્યારે બે સ્ટ્રિંગ સમાન હોય ત્યારે strcmp() શું returns  કરે છે?)

(a)

returns a string

(b)

returns 0 

(c)

returns 1

(d)

returns nothing

Answer:

Option (b)

42.

When string1 is less than string2 in strcmp() then what will be return?

(જ્યારે સ્ટ્રિંગ 1 એ સ્ટ્રિંગ 2 કરતા ઓછી હોય તો strcmp () માં return શું થશે?)

(a)

returns a string

(b)

returns 1

(c)

returns positive value

(d)

returns negative value

Answer:

Option (d)

43.

What will be the output of the following PHP code?

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

(a)

Hello

(b)

World!

(c)

Hello World!

(d)

world!

Answer:

Option (a)

44.

What will be the output of the following PHP code?

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

(a)

arshan

(b)

Darshan

(c)

darshan

(d)

no output

Answer:

Option (a)

45.

What is the syntax of str_replace() function?

(str_replace() ફંક્શનની સિન્ટેક્સ શું છે?)

(a)

str_replace(find,replace,string,count)

(b)

str_replace(string, find,replace,count)

(c)

str_replace(find,count, replace,string)

(d)

str_replace(replace,find,string,count)

Answer:

Option (a)

46.

In strrpos() function, Finds the position of the _______ occurrence of a string inside another string.

(strrpos () ફંક્શનમાં, બીજી સ્ટ્રિંગની અંદરની સ્ટ્રિંગની _______ occurrence ની position શોધે છે.)

(a)

First

(b)

Last 

(c)

Reverse

(d)

Middle

Answer:

Option (b)

47.

What will be the output of the following PHP code?

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

(a)

Hello w

(b)

o world

(c)

orld

(d)

no output

Answer:

Option (c)

48.

What is the return of chr() function in PHP?

(PHP માં chr () ફંક્શન શું રિટર્ન કરે છે?)

(a)

Octal value

(b)

Binary value

(c)

ASCII value

(d)

Hex value

Answer:

Option (c)

49.

What is the return of ord() function in PHP?

(PHP માં ord() ફંક્શન શું રિટર્ન કરે છે?)

(a)

Returns the ASCII value of the last character of a string

(સ્ટ્રિંગના છેલ્લા characterની ASCII વેલ્યુ આપે છે.)

(b)

Returns the ASCII value of the first character of a string

(સ્ટ્રિંગના પહેલા  characterની ASCII વેલ્યુ આપે છે.)

(c)

Returns the ASCII value of  the string

(સ્ટ્રિંગની ASCII વેલ્યુ આપે છે.)

(d)

Returns the binary value of  the string

(સ્ટ્રિંગની બાઇનરી વેલ્યુ રિટર્ન આપે છે.)

Answer:

Option (b)

50.

Is this strcmp() function case sensitive?

(શું આ strcmp () ફંક્શન case sensitive છે?)

(a)

TRUE

(b)

FALSE

Answer:

Option (a)

Showing 41 to 50 out of 59 Questions