Q
What is the value of $x after the following PHP code is executed?

<?php
$x = 5;
$x += 3;
echo $x;
?>

Answer & Solution

Answer: Option B
Solution:
The code initializes $x with the value 5 and then adds 3 to it using the += operator. Therefore, after execution, $x will have the value 8, as 5 + 3 equals 8.
Related Questions on Average

What will be the output of the following PHP code?

<?php
$x = 5;
echo $x--;
echo $x;
?>

A). 5 4

B). 5 5

C). 4 4

D). 4 5

What will be the output of the following PHP code?

<?php
$x = 5;
$y = 10;
echo 'The sum is: ' . ($x + $y);
?>

A). The sum is: 15

B). The sum is: 5 + 10

C). The sum is: $x + $y

D). The sum is: 510

Which of the following PHP functions is used to find the length of an array?

A). count()

B). length()

C). size()

D). sizeof()

What data type is the variable $age = 25; in PHP?

A). Integer

B). String

C). Boolean

D). Float

Which of the following is a valid variable name in PHP?

A). $my_var

B). $my-var

C). $my var

D). my_var

What is the purpose of the following PHP code?

<?php
$colors = array('Red', 'Green', 'Blue');
foreach ($colors as $color) {
echo $color . '
';
}
?>

A). To loop through an array and print each element

B). To check if a variable is an array

C). To reverse the elements of an array

D). To create a new array

What will be the output of the following PHP code?

<?php
$x = 10;
echo ++$x;
?>

A). 10

B). 11

C). 9

D). Error

What will be the output of the following PHP code?

<?php
$name = 'John';
echo 'Hello, $name!';
?>

A). Hello, John!

B). Hello, $name!

C). Hello, !

D). Undefined variable: name

Which of the following is a correct way to declare an array in PHP?

A). $colors = array('Red', 'Green', 'Blue');

B). $colors = 'Red, Green, Blue';

C). $colors = {'Red', 'Green', 'Blue'};

D). $colors = [Red, Green, Blue];

What will be the result of the expression 'Hello' . ' World' in PHP?

A). 'Hello World'

B). 'Hello . World'

C). 'Hello + World'

D). 'Hello, World'