4.1 Database Design And Concepts Flashcards

1
Q

ASCII

A

[American Standard Code for Information Interchange]

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

Byte

A

Collection of 8 bits - the smallest unit of storage in a computer system.

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

DLL files

A

[Dynamic Link Libraries]

Files that contain code or routines that can be called and used by programs.

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

Font file - Extension

A

TTF or OTF

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

HTML files

A

Define the structure and layout of a web page.

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

Overflow

A

Error condition that occurs when there aren’t enough bits available to represent an integer value accurately.

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

PDF

A

[Portable Document Format]

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

Plain text file - Extension

A

.txt

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

Program file - Extension

A

.COM or .EXE

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

Truncation

A

Misrepresentation of a string variable because there aren’t enough bytes available to store all the characters in the string.

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

Wildcard

A

Characters that present one or more characters.

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

Accuracy

A

Refers to the fact that the data is ‘right’

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

Composite keys

A

Combination of more than one field to uniquely identify a record.

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

Data integrity

A

Overall completeness, accuracy and consistency of data. When each record has a unique primary key and when a foreign key refers to an existing record in another table.

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

Data maintenance

A

Adding or deleting records or updating data.

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

Data redundancy

A

Unnecessary repetition of data.

17
Q

Data verification

A

Checking for the accuracy of data from a human perspective.

18
Q

Data validation

A

Any technique used to reduce the number of errors that can be made during input of data by ensuring data meets a set of requirements.

19
Q

Database

A

Collection of data or facts regarding a specific topic.

20
Q

DBA

A

[Database Administrator]

Manages and maintains databases. Supervises users and their access rights and performs routine maintenance.

21
Q

Database analyst

A

Analyses the efficiency of the system, analysis and design activities of the database.

22
Q

DBMS

A

[Database Management System]

Software that allows you to work with electronic databases. (MySQL, Oracle, Microsoft Access)

23
Q

Database programmer

A

Responsible for coding the custom-made software that is the user interface to the database.

24
Q

Delete anomaly

A

Database is designed in a way that deleting one piece of data results in the simultaneous removal of other, unrelated data.

25
Q

Desktop database

A

DB software where the tools you need to work with the data are all included in a single application.

26
Q

Distributed database

A

System where parts of a database are spread across servers in different locations.

27
Q

ER Diagrams

A

[Entity Relationship Diagrams]

Illustrates relationships between entities.

28
Q

Foreign key

A

Field that’s used as a ‘link’ to a field in another table.

29
Q

Insert anomaly

A

Database is designed in a way that prevents a user from capturing data when they want or need to.

30
Q

Primary key

A

Field that identifies each record with a unique value.

31
Q

Relational database

A

Database containing many tables linked together in relationships.

32
Q

Server DBMS software

A

DB software that’s installed on a server and is never directly accessed by the user.

33
Q

Update anomaly

A

Database is designed in way that when an item of data changes or is updated, it has to be updated in multiple records or tables.