Homework C 15 Flashcards

1
Q

XML

A

Extensible Markup Language

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

SQL

A

Structured Query Language

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

QBE

A

Query by Example

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

____ is information describing other information.

A

metadata

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

___ is a tagging scheme which has no standard tags.

A

XML

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

The first and thus fully enclosing tag in an XML document is called the ___.

A

Root element

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

The ___ rule says we should label data with tags consistently.

A

identification

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

The ___ rule says to enclose in a pair of tags all tagged data referring to the same entity.

A

affinity

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

The ___ rule says that when you have several instances of the same kind of data, enclose them in tags as well.

A

collection

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

An ___ is anything that can be identified by a fixed number of its characteristics or attributes.

A

entity

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

A(n) ____ database uses tables to organize information and describes relationships among the different kinds of data.

A

relational

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

In relational databases, a(n) ___ or field is a “column of a table.”

A

attribute

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

Attributes not only have a name but an associated ____ ____ (2 words) such as number, text or image.

A

data type

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

Another name for a database row is a record or a ____.

A

tuple

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

A(n) ___ is a collection of table definitions that give the name of the table, list of the attributes and their data types, and identifies the primary key.

A

schema

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

A(n) ___ is used to ensure that all entities in a database are unique.

A

Primary key

17
Q

The ___ operation pulls rows of information that satisfy a particular test.

A

select

18
Q

The ___ operation combines two tables which contain the same attributes.

A

union

19
Q

The ___ operation pulls columns of information from a selected table.

A

project

20
Q

The ___ operation combines two tables which contain different attributes except one and only combines those rows that have a common value is the shared attribute.

A

join

21
Q

Using the Product operation on a table with 4 columns and 9 rows and a table with 7 columns and 6 rows will result in a table with ___ columns and ___ rows.

A

11, 54

22
Q

The ___ database is designed by the database administrator so that the data is fast to access from the disk drive.

A

physical

23
Q

The ___ database shows users the view of the information that they need and want.

A

logical

24
Q

When we want to ask a question of the database, we make a ____ using the six database operations. The result is a new table.

A

query

25
Q

Access and most modern database systems use a language called ___ as the standard database language.

A

SQL

26
Q

IBM created a technique in the 1970s called ___ which makes creating queries much easier.

A

QBE