Books
Learn HTML
Learn CSS
Learn Git
Learn Javascript
Learn PHP
Learn python
Learn Java
Exercises
HTML
JavaScript
Git
CSS
PHP
Courses
Quizzes
Snippets
Tools
General Tools
Password Generator
HTML Editor
HTML Encoder
Base 64
Code Diff
JSON Beautifier
CSS Beautifier
Markdown Convertor
Find the Closest Tailwind CSS Color
Phrase encrypt / decrypt
Browser Feature Detection
Number convertor
JTW Decoder
CSS Maker
CSS Maker
CSS Maker text shadow
CSS Maker Text Rotation
CSS Maker Out Line
CSS Maker RGB Shadow
CSS Maker Transform
CSS Maker Font Face
Color Tools
Color Picker
Colors CMYK
Colors HWB
Colors HSL
Color Hex
Color mixer
Color Converter
Colors RGB
Color Contrast Analyzer
Color Gradient
String Tools
String Length Calculator
MD5 Hash Generator
Sha256 Hash Generator
String Reverse
URL Encoder
URL Decoder
Base 64 Encoder
Base 64 Decoder
Extra Spaces Remover
String to Lowercase
String to Uppercase
Word Count Calculator
Empty Lines Remover
HTML Tags Remover
Binary to Hex
Hex to Binary
Rot13 Transform on a String
String to Binary
Duplicate Lines Remover
Change theme
Dark
Light
System
Books
Learn HTML
Learn CSS
Learn Git
Learn Javascript
Learn PHP
Learn python
Learn Java
How To
How To NodeJs
How To Linux
How To AngularJs
How To PHP
How To HTML
How To CSS
How To Symfony
How To Git
How To Apache
How To JavaScript
How To Java
How To Vue.js
How To Python
PHP basics
1/25
What does PHP stand for?
Preprocessed Hypertext Page
Personal Home Page
Hypertext Transfer Protocol
PHP: Hypertext Preprocessor
Next >
2/25
PHP is considered a server-side scripting language
True
False
Next >
3/25
Which of the following extensions is a correct PHP file extension?
.html
.cpp
.php
.pxp
Next >
4/25
What does a semicolon indicate?
The end of a PHP statement or instruction
The start of a PHP statement or instruction
The end of a PHP script block
The start of a PHP script block
Next >
5/25
Which is the correct way to start a multiple line PHP comment?
# -------------- #
/ -------------- /
/* ----------- */
{# --------- #}
Next >
6/25
Which is the correct way to declare a PHP variable?
val = 10;
$10 = 'val';
$val;
$val = 10;
Next >
7/25
What is the correct way of adding 1 to the variable?
$var =+ 1;
$var = $var+1;
$var += 1;
$var++;
Next >
8/25
When is the default case of switch statement executed?
When one of cases evaluate to true
When other cases evaluate to false
When other cases evaluate to true
Always
Next >
9/25
What is the correct way to end a PHP statement?
.
;
:
End
Next >
10/25
What is the correct syntax for creating a function in PHP?
function NewFunction() {}
create NewFunction() {}
new Function() {}
function: NewFunction() {}
Next >
11/25
What is the purpose of the 'session_start()' function in PHP?
Starts a new PHP session
Starts a new server session
Initializes session variables
Creates a new session cookie
Next >
12/25
Which PHP function is used to redirect the browser to a new page?
header()
redirect()
goto()
forward()
Next >
13/25
What is the correct way to add elements to an array in PHP?
$array[] = 'new_element';
array_add($array, 'new_element');
array_push('new_element');
$array->add('new_element');
Next >
14/25
What does the 'var_dump()' function in PHP do?
Dumps variable content to a file
Displays structured information about a variable
Deletes a variable
Validates a variable's type
Next >
15/25
What does the 'PDO' stand for in PHP?
PHP Database Object
Public Data Object
Persistent Data Object
Program Data Orientation
Next >
16/25
Which PHP function is used to send a custom HTTP header?
set_header()
http_header()
header()
send_header()
Next >
17/25
In PHP, which function can you use to convert a string to an integer?
str_to_int()
int()
intval()
to_integer()
Next >
18/25
Which statement is true about PHP namespaces?
PHP does not support namespaces
Namespaces are used to create aliases for classes
Namespaces are used to organize code into logical groups
Namespaces are used for extending classes
Next >
19/25
What is the difference between 'echo' and 'print' in PHP?
'echo' is faster than 'print'
'print' can output multiple values, 'echo' cannot
'echo' returns a value, 'print' does not
There is no difference
Next >
20/25
Which function in PHP is used to get the length of a string?
strlen()
strlength()
stringlen()
length()
Next >
21/25
Which of the following is NOT a valid PHP data type?
String
Integer
Float
Decimal
Next >
22/25
In PHP, how do you get the current date and time?
date()
getdate()
now()
current_time()
Next >
23/25
In PHP, which function is used to convert a JSON string into a PHP variable?
json_decode()
json_convert()
json_parse()
decode_json()
Next >
24/25
What is the output of the expression 'var_dump(3 == '3')' in PHP?
bool(true)
bool(false)
NULL
int(3)
Next >
25/25
Which of the following is a valid way to start a session in PHP?
session_begin();
session_start();
start_session();
session_init();
Next >
To get the result of the quiz, please provide your email address (optional)..
Get Certificate
It seems you haven't answered any questions yet. Please provide your answers to proceed.