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
EN
DE
RU
FR
ES
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
How do you start the PHP scripting block?
<?php … ?php>
<script … script>
<?php … ?>
<php… >
<? … ?>
Next >
2/25
PHP variables need to be declared before adding values to them
True
False
Next >
3/25
Which is the correct way to declare a PHP variable?
val = 10;
$10 = 'val';
$val;
$val = 10;
Next >
4/25
What is the correct way of adding 1 to the variable?
$var =+ 1;
$var = $var+1;
$var += 1;
$var++;
Next >
5/25
Which of the following is the correct way to use the include command?
include 'file.txt';
include 'file.php';
file.php;
"file.php";
Next >
6/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 >
7/25
What does the 'foreach' loop in PHP do?
It loops through each character of a string
It loops through each key-value pair in an array
It executes a block of code a specific number of times
It iterates through numeric indexed arrays only
Next >
8/25
What is the correct way to end a PHP statement?
.
;
:
End
Next >
9/25
In PHP, what does the 'array_pop()' function do?
Removes the last element from an array
Deletes the first element of an array
Pops a new element into the array
Returns the value of the last element
Next >
10/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 >
11/25
What does the 'continue' statement do in a PHP loop?
Stops the loop
Skips the rest of the current loop iteration
Continues execution without pausing
Exits the loop and continues with the next statement
Next >
12/25
What is the default session timeout in PHP?
30 minutes
24 minutes
15 minutes
60 minutes
Next >
13/25
How can you create a multiline comment in PHP?
// comment
# comment
/* comment */
<!-- comment -->
Next >
14/25
In PHP, which operator is used for concatenating two strings?
+
.
&
||
Next >
15/25
Which of the following is a correct way to declare an associative array in PHP?
$array = [1 => 'a', 2 => 'b'];
$array = (1:'a', 2:'b');
$array = array(1, 'a', 2, 'b');
$array = {1: 'a', 2: 'b'};
Next >
16/25
Which function in PHP is used to get the length of a string?
strlen()
strlength()
stringlen()
length()
Next >
17/25
Which of the following is NOT a valid PHP data type?
String
Integer
Float
Decimal
Next >
18/25
What is the purpose of the 'die()' function in PHP?
Kills the server process
Exits the current script and outputs a message
Deletes a variable or an object
Terminates a loop or a function
Next >
19/25
Which PHP function is used to remove white spaces or other predefined characters from the right end of a string?
trim()
ltrim()
strip()
rtrim()
Next >
20/25
In PHP, how do you get the current date and time?
date()
getdate()
now()
current_time()
Next >
21/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 >
22/25
What is the output of the expression 'var_dump(3 == '3')' in PHP?
bool(true)
bool(false)
NULL
int(3)
Next >
23/25
What does the PHP function 'array_slice()' do?
Removes a portion of an array and returns it
Slices an array into two arrays
Creates a copy of an array
Reduces the size of an array
Next >
24/25
What does the 'file_put_contents()' function in PHP do?
Reads content from a file
Writes a string to a file
Deletes content from a file
Appends content to a file
Next >
25/25
What does the 'compact()' function in PHP do?
Reduces the size of an array
Creates an array containing variables and their values
Compacts HTML output
Minimizes memory usage
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.