Tests abgeschlossen
Anmeldung
Lernhilfen
Kontaktiere uns
Mit Facebook einloggen
7. Klasse
4. Klasse
Allgemeine Tests
PHP - Test1
Programing skills - PHP - Math
1.
What does PHP stand now for?
Personal Hypertext Processor
PHP: Hypertext Preprocessor
Private Home Page
2.
PHP server scripts are surrounded by delimiters. Which ones?
<?php...?>
<script>...</script>
<&>...</&>
<?php>...</?>
3.
How do you write "Hello World" in PHP?
Document.Write("Hello World");
print ("Hello World");
"Hello World";
echo "Hello World";
4.
All variables in PHP start with which symbol?
$
#
&
!
5.
What is the correct way to end a PHP statement?
;
.
</cr>
</php>
6.
The PHP syntax is most similar to:
JavaScript
VBScript
Perl and C
7.
How do you get information from a form that is submitted using the "
get
" method?
$_GET[];
Request.Form;
Request.QueryString;
8.
When using the POST method, variables are displayed in the URL:
False
True
9.
In PHP you can use both single quotes ( ' ' ) and double quotes ( " " ) for strings:
False
True
10.
Include files must have the file extension ".inc".
True
False
11.
What is the correct way to include the file "samle1.inc" ?
<?php include: "samle1.inc"; ?>
<?php include file="samle1.inc"; ?>
<!-- include file="samle1.inc" -->
<?php include "samle1.inc"; ?>
12.
What is the correct way to create a function in PHP?
new_function myFunction()
create myFunction()
function myFunction()
13.
What is the correct way to open the file "sample.txt" as readable?
open("sample.txt","read");
fopen("sample.txt","r");
fopen("sample.txt","r+");
open("sample.txt");
14.
PHP allows you to send emails directly from a script.
True
False
15.
What is the correct way to connect to a MySQL database?
mysqli_open(host,username,password,dbname);
db_open(host,username,password,dbname);
mysqli_connect(host,username,password,dbname);
mysqli_db(host,username,password,dbname);
16.
What is the correct way to add 1 to the \$count variable?
++count
$count =+1
$count++;
count++;
17.
What is a correct way to add a comment in PHP?
<comment>...</comment>
<!--...-->
/*...*/
*\...\*
18.
PHP can be run on Microsoft Windows IIS(Internet Information Server):
True
False
19.
The die() and exit() functions in PHP, do the exact same thing.
True
False
20.
Which one of these variables has an illegal name?
$_MyVar
$my_Var
$myVar
$my-Var