Q
What will be the output of the following PHP code?
<?php
function sum($a, $b = 5) {
return $a + $b;
}
echo sum(3);
?

Answer & Solution

Answer: Option B
Solution:
The output of the code will be 8 because the sum() function accepts two arguments $a and $b, with $b having a default value of 5. When the function is called with only one argument (3), the default value of $b (5) is used, resulting in the sum of 3 and 5 being returned.
Related Questions on Average

Which PHP feature allows defining functions with a variable number of arguments?

A). Optional parameters

B). Dynamic functions

C). Variable arguments

D). All of the above

Which PHP keyword is used to pass a function as an argument to another function?

A). Dynamic functions

B). Anonymous functions

C). Callbacks

D). All of the above

What is the purpose of passing arguments to a function in PHP?

A). To specify the return value of the function

B). To allow the function to accept input data

C). To define the function name

D). To terminate the execution of the function

What will be the output of the following PHP code?
<?php
function factorial($n) {
$result = 1;
for ($i = 1; $i <= $n; $i++) {
$result *= $i;
}
return $result;
}
echo factorial(5);
?

A). 120

B). 5

C). Undefined function: factorial

D). Function factorial($n) { $result = 1; for ($i = 1; $i <= $n; $i++) { $result *= $i; } return $result; }

Which keyword is used to define default parameter values in PHP functions?

A). default

B). var

C). const

D). None of the above

What is the output of the following PHP code?
<?php
function multiply(...$args) {
$result = 1;
foreach ($args as $value) {
$result *= $value;
}
return $result;
}
echo multiply(2, 3, 4);
?

A). 24

B). 9

C). 6

D). 2

Which PHP keyword is used to define functions without specifying their names?

A). Dynamic functions

B). Anonymous functions

C). Inner functions

D). Nested functions

What is the output of the following PHP code?
<?php
function outer() {
function inner() {
echo 'Inner function';
}
}
inner();
?

A). Inner function

B). Function does not exist: inner

C). Undefined function: inner

D). Function inner() { echo 'Inner function'; }

Which PHP function is used to return a value from a function and terminate its execution?

A). return

B). exit

C). break

D). continue

What will be the output of the following PHP code?
<?php
function add($a, $b) {
return $a + $b;
}
$result = add(5, 3);
echo $result;
?

A). 8

B). add(5, 3)

C). function add($a, $b) { return $a + $b; }

D). $a + $b