Unit 5 - Chapter 14 Flashcards

1
Q

E-commerce decision - The first major decision is choosing between in-house development ( doing the work within your own company) and

A

outsourcing ( hiring an outsider to do the work)

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

ASP

A

Application Service Provider

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

How can you get customers to your website? Steps

A

The customer hooks up to the Internet through his or her ISP(Internet Service Provider) and puts the URL into his or her Web browser. The browser works with DNS(Domain Name System) to find the unique IP ( Internet Protocol) address for this URL. Using this address, the TCP ( Transport Control Protocol) routes a connection through the Internet from the customer’s machine to the appropriate server. The browser uses this connection to send an HTTP GET message for the desired Web Page., which is then transmitted from the Web server back to the browser and displayed on the user’s screen, at which time the TCP/IP connection is broken. ( All of this with a single click of the mouse button!)

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

Domain name

A

The home page URL

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

ICANN ( Internet Corporation for Assigned Names and Numbers)

A

a nonprofit corporation that took over the task of domain name management from the U.S. government in 1998.

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

Portal

A

A portal is an entry-point web page with links to other pages on the same topic.

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

Cookie

A

a small text file that the Web server sends to the user’s browser and that gets stored on the user’s hard drive. It contains personal information about the user, such as name, address, time of visit, and what was looked at or brought.

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

Transmission of Web pages between a client and server is stateless; that is, no information about this exchange is permanently

A

retained by the server.

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

taxonomy

A

How information is classified and organized so customers can easily find what they want.

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

middleware

A

software that allows a separate, existing programs to communicate and work together seamlessly

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

Byte

A

a single unit of addressable memory

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

A group of bytes is called

A

a field

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

A collection of related fields is called

A

a record

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

Reminder about bit, bytes, fields

A
Bits combine to form bytes
Bytes combine to form fields
Fields combine to form records
Records combine to form files
Files combine to form databases
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

A database management system ( DBMS)

A

manages the files in a database

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

Edgar F Codd

A

proposed the conception model of a file as simply a two-dimensional table.

17
Q

Relational database

A

a digital database based on the relational data as proposed by Edgar F codd

18
Q

In a database, a row of the table contains data about one instance of an entity - for example, one employee in an employees table, and the row is called

A

a tuple

19
Q

Primary key ( database)

A

is an attribute or combination of attributes that uniquely identifies a tuple.

20
Q

Database management systems usually require specialized query languages to enable the user or another application program to query ( ask questions of) the database

A

in order to retrieve information.

21
Q

SQL ( Structured Query Language)

A

A specialized query language created for database management systems.

22
Q

Each value of EmployeeID on another table ( for example Insurance Policies table) exists as an ID value in a tuple of the Employees table, where it is a primary key. Because of this, the EmployeeID attribute of the Insurance Policies table is called a

A

foreign key into the Employees table. This foreign key establishes the relationships that employees may have insurance plans.

23
Q

Relational Database operation - Project

A

Pick our certain attributes (columns) from a set of tupples

SELECT * FROM

24
Q

Relational Database operations - Restrict

A

Pick out tuples that meet a certain condition

WHERE ____ AND _____

25
Q

Relational Database operations - JOIN

A

Match tuples from two different relational tables using a common attribute
ID = EmployeeID ===» This is doing a join operation

26
Q

Relational database operations must be done with care, to be sure the data remains correct and consistent throughout the database.

A

In database terminology, the integrity of the data must be preserved.

27
Q

Entity integrity rule says that no primary key value, or no component, of a primary key value

A

can be missing (“null”)

28
Q

Data integrity rule specifies that values for a particular attribute must come from

A

the appropriate category of information for that attribute.

29
Q

referential integrity rule

A

specifies that any value of a foreign key attribute in a given table must match a value in the corresponding primary keys of the related table

30
Q

Distributed databases

A

allow the physical data to reside at separate and independent locations that are electronically networked together