This is set of multiple choice question PHP function. Please write your answer in comment section.
A) Type Hinting was introduce in which vesion of PHP ?
A) Type Hinting was introduce in which vesion of PHP ?
- PHP 5
- PHP 5.4
- PHP 4
- PHP 7
B) What will be the output of the follwing code.
<?php
function calculation($price, $GST=""){
$total = $price + ($price * $GST); echo "$total";}
calculation(42);?>
- Error
- 0
- 42
- 21
C) What will be the output of following PHP Code.
<?php
function abc()
{
function bcd()
{
echo 'I am bcd';
}
echo 'I am abc';
}
bcd();
abc();
?>
- I am bcd
- I am abc
- Error
- I am bcd I am abc
- I am abc I am bcd
Please Friends Write your answer in comment section.
Thank You
No comments:
Post a Comment