• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/49

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

49 Cards in this Set

  • Front
  • Back

A collection of data stored in a logical, organised manner is called a:

Database

A database primarily used for day to day data entry e.g. recording a sale is regarded as what type of data processing system?

Online Transactional Processing system (OLTP)

A field in one relational database table that is linked to the primary key in another table in order to create a relationship is:

A foreign key

Which of the following statements is true of an Object-Oriented Database Management System (OODBMS)?

Object Oriented DBMS's store and retrieve whole objects Object identifiers are managed behind the scenes (OID) An Object Oriented DBMS can be resource intensive (memory) Object Oriented DBMS's preserve object relationships.

A similar concept to the Hierarchical database model was the ________model, which enable a child record to have more than one parent. (7 letters)

Network

An early database model that allows a child record to have only one parent is called a _______database model. (12 letters)

Hierarchical

Having the same data stored in more than one place in a relational database is referred to as data

redundancy

In a Network database model, the parent node is referred to as the

owner

One of the major problems associated with a Hierarchical database was that it contained lots of_____data

redundant

What database model links tables together using the concept of PRIMARY and FOREIGN KEYS? (10 letters)

RELATIONAL

A flat file database primarily consists of unrelated files

True

The Network database model reduced the amount of redundant data

True

What database model notation does this diagram represent (b)?

Object-Oriented (UML)

What database model notation does this diagram represent (c)?

Information Engineering

What database model notation does this diagram represent (d)?

Barker Notation

What database model notation does this diagram represent (e)?

Chen

What database model notation does this represent (a)?

Integration DEFinition for Information Modelling (IDEF1X)

In a NETWORK database model, the link that connects the parent node and the child node together is referred to as a ___? (3 letters)

set

The first type of database that offered data security that was provided and enforced by the DBMS was what? (12 letters)

Hierarchical

Select each statement that is true of a Flat file database from the list.

Consists of only one file or tableIs one of the earliest forms of databaseA simple database program whose records have no relationship to one anotherA plain text file that stores multiple records separated by delimitersHas a throw everything into one big table design

Given the crowsfoot notation shown, use the Internet and locate another name for this notation. 2 words(11 11)

Information Engineering

Entities in an ERD, are depicted as rectangles, and the names given are___ ? (8 letters)

Singular

Given the table shown below, I could add a new student without adding a paper on the same row.

False

The image depicts what kind of relationship if each table is read from both ways?

Many-To-Many

Given the table shown below, I could delete a paper without deleting a student on the same row.

Correct, PaperID is part of a joint primary key, therefore the PaperID value cannot be empty (NULL). This is referred to as a DELETE anomaly The correct answer is 'False'.

You need to modify values in more than one location in a database. This could cause spelling inconsistencies. This is what is known as an UPDATE anomaly True or False

True

When reviewing analysis documentation the key to identifying possible entities is to identify

nouns

A pair of tables bears a one-to-one relationship when:A single record in the first table is related to only one record in the second table, and a single record in the second table is related to one or more records in the first table. True or False?

False

This relationship indicates that a customer must have one or more orders. True or False

False

The entity "VEHICLE_PART" name is derived from the names of other two entities. This style of entity naming occurs mostly from which of the two types of relationship categories:

Ownership-OrientedCorrect, usually the VEHICLE_PART entity would only have two fields, the primary key from the VEHICLE entity and the primary key from the PART entity. They are each FOREIGN KEYS in the VEHICLE_PART table, and may together form the PRIMARY KEY in the VEHICLE_PART table.

To resolve many-to-many relationships in a Conceptual ERD, you need to create an Answerentity.

Correct, the primary keys from both outer tables are then placed as foreign keys in the new associative table. This creates the relationship between all three entities.The correct answer is: Associative

When you represent an entity on a diagram it represents a single record. True or False?

False

Entities in an ERD, are depicted as rectangles, and the names are capitalised and singular. True or False

True

One-to-One relationships are a common ocurrance in relational databases. True or False?

Correct, this is rare. The two tables are usually made into one bigger table and queries (views) are created to make the data available to who ever has permission to view that subset of the data.The correct answer is 'False'.

When referring to Relationship Context Categories, which one of the following relationship names is NOT an indication of an Action-Oriented relationship?

has

When referring to Relationship Context Categories, which one of the following relationship names is NOT an indication of an Ownership-Oriented relationship?

sellCorrect, because the relationship name indicates a form of action (Action-Oriented) relationship exists between the two entities. Action-Oriented names indicate that something happens, like an event. In the case of the word "sell", we would record the fact that one entity sold items to another entity.

The entity "VEHICLE_PART" name is derived from the names of other two entities. This style of entity naming occurs mostly from which of the two types of relationship categories:

Ownership-Oriented

Which set of attributes are the repeating group for this dataset?

paper_code + final_grade Correct , You can see that the one student "Jill" has many papers courses and grades. So the repeating group is the many side of the relationship.

When referring to Relationship Context Categories, which one of the following relationship names is NOT an indication of an Action-Oriented relationship?a. visitb. has c. teachd. performe. make

hasCorrect, "has" is not a doing word (action or event)

Which one of the following, does NOT refer to the rules of First Normal Form (1NF)a. Data item cannot be broken down any further (atomic)b. No Repeating Groupsc. No partial dependencies Correct. This rule refers to Second Normal Form (2NF).d. Each row must have a unique identifier (Primary Key).e. Each column has an unique name

No partial dependencies

(Google Research Question) In database normalization, which one of the following is NOT a recognised normal form?a. 4th Normal Formb. 2nd Normal Formc. 6th Normal Formd. Boyce Codd Normal Form (BCNF)e. 3rd Normal Formf. 5th Normal Formg. None, they are all recognised normal forms h. 1st Normal Form

None, they are all recognised normal forms

Ensuring that each column has an unique name is undertaken during which normal form process?a. 3NFb. 2NFc. 1NF d. 0NF

c. 1NF

Cardinality specifies two business rules. Select the two rules from the list below:

The minimum number of each entity that can participate in the relationshipThe maximum number of each entity that can participate in the relationship.

Showing the exact number of how many of each entity can be related to another entity is usually shown in an ERD using the Crow’s Foot notation. True or False?

False

Any attribute that can have multiple values associated with a single instance of some entity, is in normalisation referred to as a ___ ___ ? (2 words) e.g.

Repeating Group

The 3 relationship dependencies possible are:1. mandatory2. optional3. contingent4. True or False?

True

The type of dependency in the relationship shown indicates that this is a Answer relationship.

mandatory

The type of relationship dependency shown indicates that this is an Answer relationship.

optional

The type of relationship dependency shown indicates that this is a Answer relationship.

contingent