Logo

Php Questions Set 44:

Quiz Mode

  Type Hinting was introduced in which version of PHP? 

1
2
3
4

Solution:

 Which one of the following PHP functions can be used to find files?

1
2
3
4

Solution:

 Which of the following is the Concatenation Operator in PHP? 

1
2
3
4

Solution:

  If session.use_cookie is set to 0, this results in use of _____________ 

1
2
3
4

Solution:

What will be the output of the following code?

<?php

    $num  = 10;

    $num1 = 20;

    print $num . "+". $num1;

?>

1
2
3
4

Solution:

Which one of the following filter checks if the variable of the specified type exists? 

1
2
3
4

Solution:

Which of the following are types of PHP authentication implementation methodologies?

1
2
3
4

Solution:

What will be the output of the following PHP code?


<?php

    $fruits = array ("apple", "orange", "banana");

    echo (next($fruits));

    echo (next($fruits));

?>


1
2
3
4

Solution:

Which of the following statements about operator precedence is not correct?

1
2
3
4

Solution: