Answer & Solution
++$x
), which increments the value of $x
by 1 and then returns the new value. Therefore, the output will be 11
, as ++$x
increments $x
from 10
to 11
and then prints it.
<?php
$x = 10;
echo ++$x;
?>
++$x
), which increments the value of $x
by 1 and then returns the new value. Therefore, the output will be 11
, as ++$x
increments $x
from 10
to 11
and then prints it.
Which of the following statements is true about PHP comments?
A). Comments are ignored by the PHP interpreter
B). Comments can only be single-line
C). Comments must start with /* and end with */
D). Comments are displayed on the webpage
Which of the following PHP functions is used to convert a string to uppercase?
A). strtoupper()
B). ucwords()
C). strtolower()
D). ucfirst()
What will be the result of the expression 10 % 3
in PHP?
A). 0
B). 1
C). 3
D). 10
Which of the following PHP operators is used for concatenation of strings?
A). .
B). +
C). &&
D). *
What data type is the variable $age = 25;
in PHP?
A). Integer
B). String
C). Boolean
D). Float
Which of the following PHP operators is used to compare whether two values are equal and of the same data type?
A). ===
B). ==
C). =
D). !=
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'
Which of the following is a valid variable name in PHP?
A). $my_var
B). $my-var
C). $my var
D). my_var
What will be the value of the variable $result
after executing the following PHP code?<?php
$x = 5;
$result = ($x > 10) ? 'Yes' : 'No';
?>
A). Yes
B). No
C). True
D). False