Test 1

Is this your test? Login to manage it. If not, you can generate a test just like it.

This is a non-interactive preview of the quiz content.

1.
2 points
Which superglobal variable do I use if I want to request URL Queries?
2.
2 points
Is your name Robert Riggs?
3.
2 points
How do you define a variable in PHP?
4.
2 points
ALL lines of written PHP between the opening brackets MUST contain a semicolon.
5.
2 points
What does break; do?
6.
2 points
What does the following function do when it is called?

<?php

$foobar = "Hello world!";

function bam() {
echo $foobar;
}

bam();

?>
7.
2 points
How is a key value pair defined in a PHP array?
8.
2 points
What would i use to check if an Array is set and no null?
9.
2 points
What is the main advantages of $_POST[] vs $_GET[]?
10.
2 points
What does continue; do?
11.
2 points
Can you nest arrays in PHP?
12.
2 points
What does git push do?