Dynamic Web Page Development (3350702) MCQs

MCQs of Working with Basic Building Blocks of PHP

Showing 11 to 20 out of 48 Questions
11.

What will be the output of the following PHP code?

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

(a)

Hello world

(b)

echo “Hello world”

(c)

echo Hello world

(d)

Error

Answer:

Option (d)

12.

What will be the output of the following PHP code?

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

(a)

3

(b)

 1+2

(c)

1.+.2

(d)

Error

Answer:

Option (b)

13.

What will be the output of the following PHP code?

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

(a)

blue green

(b)

blue

(c)

green

(d)

error

Answer:

Option (d)

14.

Which is the right way of declaring a variable in PHP?     

i) $3hello

ii) $_hello

iii) $this

iv) $This

PHP માં વેરીએબલ declare કરવાની સાચી રીત કઈ છે?

i) $3hello

ii) $_hello

iii) $this

iv) $This

(a)

Only ii)

(b)

Only iii)

(c)

 ii), iii) and iv)

(d)

ii) and iv)

Answer:

Option (d)

15.

What will be the output of the following PHP code?

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

(a)

redredred

(b)

redred

(c)

red

(d)

error

Answer:

Option (c)

16.

Which of the following PHP statement/statements will store 111 in variable num? 

i) int $num = 111;

ii) int mum = 111;

iii) $num = 111;

iv) 111 = $num;

નીચેનામાંથી કયા PHP સ્ટેટમેન્ટ / સ્ટેટમેન્ટ્સ 111 ને વેરીએબલ નંબરમાં સ્ટોર કરશે?

i) int $num = 111;

ii) int mum = 111;

iii) $num = 111;

iv) 111 = $num;

(a)

 Both i) and ii)

(b)

 i), ii), iii) and iv)

(c)

Only iii)

(d)

Only i)

Answer:

Option (c)

17.

PHP automatically converts the variable to the correct data type, depending on its value. Because

(PHP, તેની વેલ્યૂના આધારે વેરીએબલને આપમેળે સાચા ડેટા ટાઇપમાં ફેરવે છે. કારણ કે)

(a)

PHP is known as loosely typed language

(PHP, loosely typed language  તરીકે ઓળખાય છે)

(b)

PHP is known as high level language

(PHP, high level language  તરીકે ઓળખાય છે)

(c)

PHP is known as easy language

(PHP,  easy language તરીકે ઓળખાય છે)

(d)

PHP is known as soft language

(PHP, soft language  તરીકે ઓળખાય છે)

Answer:

Option (a)

18.

Which operator is used to check if two values are equal and of same data type?

(બે વેલ્યુ સમાન અને સમાન ડેટા ટાઇપ કે નહીં તે ચકાસવા માટે કયા ઓપરેટરનો ઉપયોગ થાય છે?)

(a)

!=

(b)

=

(c)

===  

(d)

==

Answer:

Option (c)

19.

_______ is cocatenation operator in PHP?

(PHP માં _______ કોકેટેનેશન ઓપરેટર છે.)

(a)

+ (plus)

(b)

. (dot)

(c)

^

(d)

-

Answer:

Option (b)

20.

What will be the output of the following PHP code?

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

(a)

11111213

(b)

11121213

(c)

11111212

(d)

11111112

Answer:

Option (a)

Showing 11 to 20 out of 48 Questions