Foundation • Quiz 1
PHP Basics Quiz
Are you ready?
14 questions to answer
PHP is an abbreviation for what?
How to output stuff in PHP?
Which of the following operators is used to perform the division operation on numbers?
What does 5 % 3
evaluate down to?
How to create a variable called 'x' in PHP, holding the value 10
?
How to obtain input from the user in PHP?
What is meant by string concatenation?
A statement and an expression is the same thing. True or false.
Which of the following best fits with the idea of an expression?
Which of the following definitions best describes a string in PHP?
What does the following code output?
<?php
echo (5 * 5 + 5) * 5 - 5;
?>
What does the following code output?
<?php
echo 'Hello\nWorld!';
?>
Which of the following denotes a string?
Which of the following operators is used to concatenate strings in PHP?
Computing score...