Chapter 1 Flashcards

1
Q

What is ‘Open Source’

A

Open source means you can view and edit the code of an application.

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

What is an application called that you can edit and view the code of?

A

Open Source

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

What is ‘Freeware’?

A

Freeware is software that is free to use, but you are unable to edit the source code of the application.

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

PHP is Open Source. True or False.

A

Ture. PHP is Open Source.

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

PHP is NOT Open Source. True or False.

A

False. PHP is Open Source.

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

What is the difference between Open Source and Freeware?

A

Open source allows you to not only use the application, you can view and edit the source code. Freeware only allows you to use the application for free, you are unable to edit the source.

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

What is a Static Web Site?

A

A static web site is a page of content that is rendered the same every time it is requested.

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

What is a Dynamic Web Site?

A

A dynamic web site is one with content that is regenerated every time a user visits or reloads the site.

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

A Dynamic Web Site is a page of content that is rendered the same every time it is requested. True or False?

A

False. A dynamic website is one with content that is regenerated every time a user visits or reloads the site.

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

A Static Web Site is one with content that is regenerated every time a user visits or reloads the site. True or False.

A

False. A static website is a page of content that is rendered the same every time it is requested.

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

A static web site is a page of content that is rendered the same every time it is requested. True or False.

A

True.

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

A dynamic web site is one with content that is regenerated every time a user visits or reloads the site.

A

True.

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

What does HTTP stand for?

A

Hypertext Transfer Protocol

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

What is the acronym for Hypertext Transfer Protocol?

A

HTTP

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

What does the HTTP request look like?

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

What is PHP?

A

PHP is a general-purpose scripting language that is suited for web development.

  • Fast
  • flexable
  • Pragmatic
17
Q

Who was PHP created by?

A

PHP was created by Rasmus Lerdorf as PHP tool

18
Q

What did PHP originally stand for?

A

Personal Home Pages

19
Q

What does the PHP acronym stand for?

A

PHP Hypertext Preprocessor (a recursive acronym)

20
Q

PHP will NOT work with any UNIX-based web server on every UNIX flavor out there.

True or False?

A

FALSE.

PHP will work with any UNIX-based web server on every UNIX flavor out there. The package is completly free for all useres including commercial.

21
Q

What does the beigining and end php script look like?

A

<?php echo date(“m-d-y”); ?>

22
Q

The followinh is the correct way to end and open php:

<php></php>

A

False:

<php></php>

<?php echo date(“m-d-Y”); ?>

23
Q

MySQL is an open source relational database.

True or False

A

True

24
Q

Why use PHP & MySQL together?

A
  • Both are open source
  • Commonly used together
  • both have a low barrior to entry
25
Q
A