Intro to Internet Computing Flashcards
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?
- You enter a URL into the address bar
- Your browser looks up the IP address for that URL
- Your browser issues a request for the home page at that URL
- The request crosses the internet and arrives at the server for the website
- The web server looks for the web page on its hard disk
- The web page is retrieved by the server and returned to the browser
- The browser displays the webpage
What does PHP stand for?
PHP: Hypertext Preprocessor
What can PHP do?
- Can generate dynamic page content
- Can create, open, read, write, delete, and close files on the server
- Can collect form data
- Can send and receive cookies
- Can add, delete, and modify data in a database
- Can be used to control user-access
- Can encrypt data
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