Intro to Internet Computing Flashcards

1
Q

What is internet computing?

A

An architecture that supports all information flows and processes over the Internet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

When was the first documented version of the HTTP protocol introduced and what was it called?

A

HTTP 0.9 introduced in 1991

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

When was HTTP 1.0 introduced?

A

1996

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

When was HTTP 1.1 introduced?

A

1997

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

When was HTTP 2.0 introduced?

A

2015

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What layer protocol is HTTP?

A

It is an application layer protocol

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the process of the request/response cycle?

A
  1. You enter a URL into the address bar
  2. Your browser looks up the IP address for that URL
  3. Your browser issues a request for the home page at that URL
  4. The request crosses the internet and arrives at the server for the website
  5. The web server looks for the web page on its hard disk
  6. The web page is retrieved by the server and returned to the browser
  7. The browser displays the webpage
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does PHP stand for?

A

PHP: Hypertext Preprocessor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What can PHP do?

A
  1. Can generate dynamic page content
  2. Can create, open, read, write, delete, and close files on the server
  3. Can collect form data
  4. Can send and receive cookies
  5. Can add, delete, and modify data in a database
  6. Can be used to control user-access
  7. Can encrypt data
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are the symbols that open and close a PHP script?

A

Open: <?
Close: ?>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are the rules surrounding case sensitivity in PHP?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the symbol that denotes a variable in PHP?

A

$

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are the possible symbols used to make a comment in PHP code?

A

// or # for single line comments

/* … */ for multi-line comments

How well did you know this?
1
Not at all
2
3
4
5
Perfectly