case studies Flashcards

case studies

1
Q

ACID

A

Atomicity, Consistency, Isolation, Durability. Properties of a database that help guarantee data integrity.

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

Adobe Flash Player

A

A web browser plugin which allows a variety of multimedia and interactive content to be included in web pages.

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

Centralised database

A

A database in which all data is stored in a single central location.

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

Distributed database

A

A database in which data is stored on multiple computers in separate physical locations. Various techniques are used to synchronise the data to prevent data integrity problems.

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

Client-side software

A

In a web environment, refers to software that runs in the user’s browser rather than on the web server.

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

Concurrency

A

Methods used to ensure multiple (concurrent) operations can be performed on a database without causing data integrity problems. Related to ACID and record locking.

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

Customer relationship management (CRM) system

A

A computerised system for managing an organisation’s customer, sales, and marketing information. This might also include customer sales and technical support.

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

Plug-ins

A

Software added to web browsers to extend their functionality.

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

Record locking

A

Technique used in databases to prevent a record being accessed by more than one user at a time. This prevents data integrity problems (such as a change by one user while another is reading it).

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

Smartphone

A

Mobile phone with capabilities typically including Internet access and a camera.

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

Tablet device

A

Portable device, often with a touch screen.

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

Atomicity

A

Part of ACID. A way of ensuring that database transactions either happen in their entirety, or not at all. For example, a payment from A to B must have money subtracted from person A and credited to person B. Atomicity means either both transactions occur, or neither do.

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

Consistency

A

Part of ACID. Ensures that data in a database is always in a consistent state , i.e. that it follows all data validation rules. (Note that this is not the same as being correct).

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

Isolation

A

Part of ACID. Ensures that one database transaction cannot unintentionally affect another. For example, two transactions to alter the same record cannot run at the same time.

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

Durability

A

Part of ACID. Durability means that once a transaction has occurred, it must ‘stay occurred’, even if the power is lost or the hard disk crashes or there is some other disaster. This typically records a record of all transaction (a transaction log) to be kept.

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

QR code

A

Quick Response Code. A type of 2D bar code that can store more data than a regular UPC bar code.

17
Q

Mail merge

A

The process of automatically customising a standard letter with individual names and addresses from a database.

18
Q

Unicode

A

Encoding system to store text, with support for multiple languages and alphabets, and thousands of characters. Compare ASCII.

19
Q

CMS

A

Content Management System. Software which allows management of a web site without web design skills. Content is stored in a database and published in different ways, such as on a web site, in a printed booklet, or in different languages. Sometimes called a WebCMS.

20
Q

Virtual Private Network

A

Allows a secure private connection over a public network, using an encrypted ‘tunnel’. For example, a remote computer can securely connect to a LAN, as though it were physically connected.

21
Q

Comma Separated Values

A

File format for transferring data, which stores fields and records in a plain text file, separated by commas. See also TSV (Tab Separated Values).