Which one of the following is the right way of defining a function in PHP?
Select an option to see the answer and solution.
Type Hinting was introduced in which version of PHP?
Select an option to see the answer and solution.
What will happen in this function call?
<?php
function calc(price,tax)
{
total<spanclass="p−blue">=</span>price + $tax;
}
$pricetag = 15;
$taxtag = 3;
calc(pricetag,taxtag);
?>
Select an option to see the answer and solution.
What will be the output of the following PHP code?
<?php
function calc(price,tax="")
{
total<spanclass="p−blue">=</span>price + (price<spanclass="p−blue">∗</span>tax);
echo "$total";
}
calc(42);
?>
Select an option to see the answer and solution.
Which of the following are valid function names?
1. function()
2. €()
3. .function()
4. $function()
Select an option to see the answer and solution.
What will be the output of the following PHP code?
<?php
function a()
{
function b()
{
echo 'I am b';
}
echo 'I am a';
}
a();
a();
?>
Select an option to see the answer and solution.
What will be the output of the following PHP code?
<?php
function a()
{
function b()
{
echo 'I am b';
}
echo 'I am a';
}
b();
a();
?>
Select an option to see the answer and solution.
What will be the output of the following PHP code?
<?php
$op2 = "blabla";
function foo($op1)
{
echo $op1;
echo $op2;
}
foo("hello");
?>
Select an option to see the answer and solution.
A function in PHP which starts with ______ (double underscore) is know as.
Select an option to see the answer and solution.
What will be the output of the following PHP code?
<?php
function foo($msg)
{
echo "$msg";
}
$var1 = "foo";
$var1("will this work");
?>
Select an option to see the answer and solution.
Which one of the following PHP functions can be used to build a function that accepts any number of arguments?
Select an option to see the answer and solution.
Which one of the following PHP functions can be used to find files?
Select an option to see the answer and solution.
Which of the following PHP functions can be used to get the current memory usage?
Select an option to see the answer and solution.
Which of the following PHP functions can be used for generating unique id’s?
Select an option to see the answer and solution.
Which one of the following functions can be used to compress a string?
Select an option to see the answer and solution.
What will be the output of the following PHP code?
Select an option to see the answer and solution.
What will be the output of the following PHP code?
<?php
echo ord ("hi");
?>
Select an option to see the answer and solution.
What will be the output of the following PHP code?
<?php
$str = "Hello World"
echo wordwrap($str,5,"n");
?>
Select an option to see the answer and solution.
What will be the output of the following PHP code?
<?php
echo ucwords("i love my country");
?>
Select an option to see the answer and solution.
What will be the output of the following PHP code?
<?php
echo lcfirst("welcome to India");
?>
Select an option to see the answer and solution.