What is internet computing?
An architecture that supports all information flows and processes over the Internet
When was the first documented version of the HTTP protocol introduced and what was it called?
HTTP 0.9 introduced in 1991
When was HTTP 1.0 introduced?
1996
When was HTTP 1.1 introduced?
1997
When was HTTP 2.0 introduced?
2015
What layer protocol is HTTP?
It is an application layer protocol
What is the process of the request/response cycle?
What does PHP stand for?
PHP: Hypertext Preprocessor
What can PHP do?
What are the symbols that open and close a PHP script?
Open: <?
Close: ?>
What are the rules surrounding case sensitivity in PHP?
Keywords are not case sensitive so you could spell the “echo” command as “EcHo” and it would do the same thing.
Variable names are case sensitive
What is the symbol that denotes a variable in PHP?
$
What are the possible symbols used to make a comment in PHP code?
// or # for single line comments
/* … */ for multi-line comments