PHP MCQs
Basics
-
What does PHP stand for?
- a) Personal Home Page
- b) PHP: Hypertext Preprocessor ✓
- c) Private Hosting Protocol
-
How do you echo text in PHP?
- a)
print("text") - b)
echo "text";✓ - c)
write("text")
- a)
-
Which symbol starts a variable in PHP?
- a)
@ - b)
$✓ - c)
&
- a)
Functions & Arrays
-
Which function returns the length of a string?
- a)
strlen()✓ - b)
strlength() - c)
len()
- a)
-
How do you add an element to an array?
- a)
array_push()✓ - b)
array_add() - c)
array_append()
- a)