Database Concepts Flashcards

1
Q

Are pieces of information. Data can be measured, collected, analyzed and reported.

A

Data

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

It is an organized collection of information. The basic function of a database is to store data.

A

Database

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

It is designed to handle complex relationships between various items of data, and is correctly referred to as a relational database management system (RDBMS).

A

Database Applications

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

It is the standard language used to create and work with databases.

A

Structured Query Language (SQL)

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

A standard programming interface for accessing a number of different databases, including Access, DB2, SQL Server, and MySQL.

A

Open Database Connectivity (ODBC)

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

A standard programming interface for accessing Oracle databases, which run on the Java platform

A

Java Database Connectivity (JDBC)

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

It is a set of programming building blocks that specify how software components should interact.

A

Application programming interface (API)

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

Itis a Database Management System (DBMS) fromMicrosoftthat combines the relationalMicrosoftJet Database Engine with a graphical user interface and software development tools.

A

Microsoft Access

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

It is a field (or a combination of fields) that uniquely identifies each record stored in a table.

A

Primary key

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

It is equivalent to “unknown.” It is not the same thing as zero (0).

A

Null

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

A primary key that is comprised of a combination of fields is called a BLANK

A

Composite Key

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

It is a column (or combination of columns) in a table that references the primary key in another table.

A

Foreign key

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

Note that the primary key to which a foreign key maps is also known as a parent key BLANK

A

Parent key

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

There are three types of relationships that can be established between tables:

A
  • One-to-One
  • One-to-Many
  • Many-to-Many
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

A relationship in which each record in Table A can have only one matching record in Table B

A

One-to-One

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

A relationship in which a record in Table A can have matching records in Table B, but a record in Table B has only one matching record in Table A

A

One-to-Many

17
Q

A relationship in which one record in Table A or Table B can be related to many matching records in the other table

A

Many-to-Many

18
Q

It represents a logical view of the entire database. It defines how the data is organized and how the tables within the database are related to one another.

A

Database schema

19
Q

Works by checking table fields for entries that meet the criteria that you specify.

A

Queries

20
Q

It can be strings of text, dates, or a number or range of numbers that you enter.

A

Criteria

21
Q

It is not a static snapshot of records, but a dynamic changing subset of records.

A

Result set or Dynaset (dynamic subset)

22
Q

Are tools that aid data entry and are user-friendly interfaces designed to help users enter specific data without becoming distracted or confused by other data that may be stored in a table.

A

Forms

23
Q

Two basic types of web pages

A
  • Static
  • Dynamic
24
Q

These types of pages display content that does not change (unless the web page developer edits what is on the page).

A

Static

25
Q

These pages change every time they are loaded in the browser window. They change their content based on user actions.

A

Dynamic

26
Q
A