Quizzes Flashcards

1
Q

T or F: Data and information are essentially the same thing.

A

False

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

T or F: Data constitute the building blocks of information.

A

True

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

T or F: Metadata describe the data characteristics and the set of relationships that links the data found within the database.

A

True

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

T or F: One disadvantage of the DBMS is that it increases the risk of data security breaches.

A

False

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

T or F: Corporations use only structured data.

A

False

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

T or F: Field refers to a collection of related records.

A

False

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

T or F: Data is the result of processing raw facts to reveal its meaning.

A

False

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

T or F: Database programming languages receive all application requests and translate them into the complex operations required to fulfill those requests.

A

False

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

T or F: The DBMS reveals much of the database’s internal complexity to the application programs and users.

A

False

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

T or F: One disadvantage of a database system over previous data management approaches is increased costs.

A

True

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

T or F: In the context of data models, an entity is a person, place, thing, or event about which data will be collected and stored.

A

True

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

T or F: Business rules apply to businesses and government groups, but not to other types of organizations such as religious groups or research laboratories.

A

False

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

T or F: Business rules must be rendered in writing.

A

True

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

T or F: Each row in the relational table is known as an entity instance or entity occurrence in the ER model.

A

True

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

Which of the following is true of business rules?

They can be a communication tool between the users & designers.
They allow the designer to develop business processes.
They allow the designer to set company policies with regard to data.
They provide a framework for the company’s self-actualization.

A

They can be a communication tool between the users & designers.

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

A noun in a business rule translates to a(n) _____ in the data model.

relationship
entity
attribute
constraint

A

entity

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

A verb associating two nouns in a business rule translates to a(n) _____ in the data model.

constraint
relationship
attribute
entity

A

relationship

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

MySQL is an example of the _____.

XML data model
file system data model
hierarchical model
relational data model

A

relational data model

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

T or F: M:N relationships are not appropriate in a relational model.

A

True

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

Which of the following is true of NoSQL databases?

They are not based on the relational model.
They do not support distributed database architectures.
They do not support very large amounts of sparse data.
They are geared toward transaction consistency rather than
performance.

A

They are not based on the relational model.

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

T or F: All SQL commands must be issued on a single line.

A

False

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

T or F: Although SQL commands can be grouped together on a single line, complex command sequences are best shown on separate lines, with space between the SQL command and the command’s components.

A

True

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

T or F: Comparison operators cannot be used to place restrictions on character-based attributes.

A

False

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

T or F: String comparisons are made from left to right.

A

True

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

T or F: Most SQL implementations yield case-insensitive searches.

A

True

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

The SQL command that allows a user to permanently save data changes is _____.

COMMIT
UPDATE
INSERT
SELECT

A

COMMIT

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

How many rows would be returned from a cross join of tables A and B, if A contains 8 rows and B contains 18?

8
144
26
18

A

144

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

The SQL aggregate function that gives the number of rows containing non-null values for a given column is _____.

COUNT
MIN
MAX
SUM

A

COUNT

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

T or F: SQL is considered difficult to learn; its command set has a vocabulary of more than 300 words.

A

False

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

A(n) _____ is a query that is embedded (or nested) inside another query.

view
alias
operator
subquery

A

subquery

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

T or F: The practical significance of taking the logical view of a database is that it serves as a reminder of the simple file concept of data storage.

A

True

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

T or F: The order of the rows and columns is important to the DBMS.

A

False

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

T or F: Only a single attribute, not multiple attributes, can define functional dependence.

A

False

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

T or F: RDBMSs enforce integrity rules automatically.

A

True

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

T or F: Relational algebra defines the theoretical way of manipulating table contents using relational operators.

A

True

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

T or F: The SELECT operator yields a vertical subset of a table.

A

False

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

T or F: In a natural join, the column on which the join was made occurs twice in the new table.

A

False

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

T or F: The one-to-many (1:M) relationship is easily implemented in the relational model by putting the foreign key of the “1” side in the table of the “many” side as a primary key.

A

False

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

Referential _____ dictates that the foreign key must contain values that match the primary key in the related table, or must contain null.

model
integrity
uniqueness
attribute

A

integrity

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

_____ relationships can be implemented by creating a new entity in 1:M relationships with the original entities.

M:N
1:N
M:1
1:1

A

M:N

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

T or F: The entity relationship model (ERM) is dependent on the database type.

A

False

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

T or F: In the entity relationship model, a table row corresponds to an entity instance.

A

True

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

T or F: Relationships between entities always operate in one direction.

A

False

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

T or F: Referential integrity and participation are both bidirectional, meaning that they must be addressed in both directions along a relationship.

A

False

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

When the specific cardinalities are not included on the diagram in Crow’s Foot notation, cardinality is implied by the use of _____.

symbols
attributes
images
tables

A

symbols

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

The existence of a(n) _____ entity indicates that its minimum cardinality is zero.

ternary
optional
strong
weak

A

optional

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

The entity relationship model uses the associative entity to represent a(n) _____ relationship between two or more entities.

M:N
1:M
N:1
M:1

A

M:N

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

The first step in building an entity-relationship diagram (ERD) is _____.

developing the initial ERD
creating a detailed narrative of the organization’s description of
operations
identifying the attributes and primary keys that adequately describe
the entities
identifying the business rules based on the description of
operations

A

creating a detailed narrative of the organization’s description of operations

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

In organizations that generate large number of transactions, _____ are often a top priority in database design.

relationships among entities
logical design standards
naming conventions
high processing speeds

A

high processing speeds

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

Database design is a(n) _____ process based on repetition.

sequential
iterative
linear
intermittent

A

iterative

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

T or F: Normalization works through a series of stages called normal forms.

A

True

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

T or F: Normalization is a process that is used for changing attributes to entities.

A

False

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

T or F: Denormalization produces a lower normal form.

A

True

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

T or F: Relational models view data as part of a table or collection of tables in which all key values must be identified.

A

True

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

T or F: All relational tables satisfy the 1NF requirements.

A

True

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

T or F: It is possible for a table in 2NF to exhibit transitive dependency, where the primary key may rely on one or more nonprime attributes to functionally determine other nonprime attributes.

A

True

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

From a structural point of view, 3NF is better than _____.

5NF
3NF
2NF
6NF

A

2NF

58
Q

A table that has all key attributes defined, has no repeating groups, and all its attributes are dependent on the primary key is said to be in _____.

2NF
3NF
4NF
1NF

A

1NF

59
Q

Dependencies based on only a part of a composite primary key are known as _____ dependencies.

partial
primary
composite
incomplete

A

partial

60
Q

A table where all attributes are dependent on the primary key but are independent of each other, and no row contains two or more multivalued facts about an entity is said to be in _____.

3NF
1NF
2NF
4NF

A

4NF

61
Q

ome very specialized applications may require normalization beyond the _____.

1NF
4NF
2NF
3NF

A

4NF

62
Q

A relational table must not contain a(n) _____.

attribute
entity
relationship
repeating group

A

repeating group

63
Q

A table that is in 2NF and contains no transitive dependencies is said to be in _____.

2NF
4NF
1NF
3NF

A

3NF

64
Q

An atomic attribute _____.

displays multiplicity
is always chosen to be a foreign key
cannot be further subdivided
cannot exist in a relational table

A

cannot be further subdivided

65
Q

T or F: In order to meet performance requirements, portions of the database design may need to be occasionally denormalized.

A

True

66
Q

T or F: Relational models view data as part of a table or collection of tables in which all key values must be identified.

A

True

67
Q

T or F: A dependency of one nonprime attribute on another nonprime attribute is a partial dependency.

A

False

68
Q

T or F: In the context of partial dependencies, data redundancies occur because every row entry requires duplication of data.

A

True

69
Q

T or F: A table is in BCNF if every determinant in the table is a foreign key.

A

False

70
Q

T or F: The combination of normalization and ER modeling yields a useful ERD, whose entities can be translated into appropriate table structures.

A

True

71
Q

T or F: A view is a virtual table based on a SELECT query.

A

True

72
Q

T or F: A persistent stored module is stored and executed on the database client machine.

A

False

73
Q

T or F: A trigger is procedural SQL code that is automatically invoked by the RDBMS upon the occurrence of a given data manipulation event.

A

True

74
Q

T or F: Triggers can only be used to update table values.

A

False

75
Q

T or F: MySQL allows multiple triggering conditions per trigger.

A

False

76
Q

T or F: Just like database triggers, stored procedures are stored in the database.

A

True

77
Q

T or F: An explicit cursor must return two or more rows.

A

False

78
Q

When writing SQL table-creating command sequences, the entire table definition is enclosed in _____.

asterisks
quotations
commas
parentheses

A

parentheses

79
Q

T or F: Every PL/SQL block must be given a name.

A

False

80
Q

The CREATE TABLE command lets you define constraints when you use the CONSTRAINT keyword, known as a(n) _____ constraint.

index
column
table
cell

A

table

81
Q

T or F: Systems analysis establishes the need for an information system and its extent.

A

True

82
Q

T or F: The primary objective in database design is to create complete, normalized, nonredundant, and fully integrated conceptual, logical, and physical database models.

A

True

83
Q

T or F: In the detailed systems design phase of the Systems Development Life Cycle (SDLC), steps are laid out for the conversion of a database from an old system to a new system.

A

True

84
Q

T or F: The database contents might be loaded interactively or in batch mode using a variety of methods and devices including customized user programs.

A

True

85
Q

T or F: A system maintenance activity generated in response to changes in the business environment is referred to as corrective maintenance.

A

False

86
Q

T or F: The overall purpose of the database initial study is to create the conceptual design.

A

False

87
Q

T or F: Data integrity is enforced by the database management system (DBMS) through the proper use of primary and foreign key rules.

A

True

88
Q

Coding, testing, and debugging are part of the _____ phase of the Systems Development Life Cycle (SDLC).

analysis
detailed systems design
implementation
planning

A

implementation

89
Q

“Should the existing system be replaced?” is a question that is asked during the _____ stage of the Systems Development Life Cycle (SDLC).

analysis
implementation
maintenance
planning

A

planning

90
Q

T or F: The testing and evaluation phase of the Database Life Cycle (DBLC) occurs after applications programming.

A

False

91
Q

T or F: Most real-world database transactions are formed by only one database request.

A

False

92
Q

T or F: The DBMS guarantees that the semantic meaning of a transaction truly represents the real-world event.

A

False

93
Q

T or F: The multiuser DBMS must implement controls to ensure serializability and isolation of transactions, in addition to atomicity and durability, in order to guard the database’s consistency and integrity.

A

True

94
Q

T or F: The phenomenon of uncommitted data occurs when two transactions are executed concurrently and the first transaction is rolled back after the second transaction has already accessed the uncommitted data—thus violating the isolation property of transactions.

A

True

95
Q

T or F: A scheduler facilitates data isolation to ensure that two transactions do not update the same data element at the same time.

A

True

96
Q

T or F: In a page-level lock, the DBMS will lock an entire diskpage.

A

True

97
Q

T or F: A field-level lock allows concurrent transactions to access the same row, as long as they require the use of different fields within that row.

A

True

98
Q

T or F: A growing phase in a two-phase lock is when a transaction acquires all the required locks without locking any data.

A

False

99
Q

T or F: An optimistic approach is based on the assumption that the majority of the database operations do not conflict.

A

True

100
Q

ANSI has defined standards that govern SQL database transactions. Transaction support is provided by two SQL statements _____ and ROLLBACK.

RETRIEVE
ASSIGN
COMMIT
UPDATE

A

COMMIT

101
Q

T or F: One of the main functions of a database system is to provide timely answers to end users.

A

True

102
Q

T or F: Good database performance is easy to evaluate.

A

False

103
Q

T or F: The SQL cache stores the end-user written SQL.

A

False

104
Q

T or F: The purpose of an I/O operation is to move data to and from different computer components or devices.

A

True

105
Q

T or F: Working with data in the data cache is many times faster than working with data in the data files.

A

True

106
Q

T or F: Fully equivalent means that the optimized query results are always the same as the original query.

A

True

107
Q

T or F: The SQL execution activities are performed by the query optimizer.

A

False

108
Q

T or F: An index scan is less efficient than a full table scan.

A

False

109
Q

T or F: Indexes do not facilitate join operations.

A

False

110
Q

T or F: RAID systems use a single disk to create storage volumes.

A

False

111
Q

T or F: A distributed database management system (DDBMS) governs the storage and processing of logically related data over interconnected computer systems.

A

True

112
Q

T or F: The web is the repository for distributed data.

A

True

113
Q

T or F: Current distributed database management system (DDBMS) are subject to some problems, such as the complexity of management and control.

A

True

114
Q

T or F: One of the advantages of a distributed database management system (DDBMS) is that the data is located near the site with the least demand.

A

False

115
Q

T or F: In order to manage distributed data, copies or parts of the database processing functions must be distributed to all data storage sites.

A

True

116
Q

T or F: A fully distributed database management system (DBMS) must perform all the functions of a centralized DBMS, and it must handle all necessary functions imposed by the distribution of data and processing.

A

True

117
Q

T or F: The transaction processor (TP) is the software component found in each computer that requests data.

A

True

118
Q

T or F: Distributed data access was needed to support geographically dispersed business units.

A

True

119
Q

T or F: A distributed database management system (DDBMS) must be communications-media-dependent.

A

False

120
Q

T or F: Distributed database systems do not require complex mechanisms to manage transactions and ensure the database’s consistency and integrity.

A

False

121
Q

T or F: Business intelligence (BI) architecture is composed of data, people, processes, and technology working together to facilitate and enhance a business’s management and governance.

A

True

122
Q

T or F: Master data management’s main goal is to provide a partial and segmented definition of all data within an organization.

A

False

123
Q

T or F: Decision support data is a snapshot of the operational data at a given point in time.

A

True

124
Q

T or F: Normalizing fact tables improves data access performance and saves data storage space.

A

False

125
Q

T or F: Advanced OLAP feature become more useful when access to them is kept simple.

A

True

126
Q

From a data analyst’s point of view, decision support data differ from operational data in three main areas: time span, granularity, and _____.

dimensionality
transaction processing
sparsity
usability

A

dimensionality

127
Q

Operational data are commonly stored in many tables, and the stored data represents information about a given _____ only.

transaction
table
concept
database

A

transaction

128
Q

In a star schema, attributes are often used to search, filter, or classify _____.

facts
sales
dimensions
tables

A

facts

129
Q

T or F: Operational data and decision support data serve the same purpose.

A

False

130
Q

In business intelligence framework, data are captured from a production system and placed in _____ on a near real-time basis.

portal
dashboard
decision support system
data warehouse

A

data warehouse

131
Q

T or F: ​Scaling out is keeping the same number of systems, but migrating each system to a larger one.

A

False

132
Q

T or F: In many ways, the issues associated with volume and velocity are the same.

A

True

133
Q

T or F: ​​Relational databases rely on unstructured data.

A

False

134
Q

T or F: Big Data processing imposes a structure on the data as needed for applications as a part of retrieval and processing.

A

True

135
Q

T or F: The ability to graphically present data in a way that makes it understandable is the concept of value.

A

False

136
Q

T or F: A column family database is a NoSQL database model that organizes data in key-value pairs with keys mapped to a set of columns in the value component.

A

True

137
Q

Which of the following is NOT one of the standard NoSQL categories?

Column-oriented databases
Chart databases
Graph databases
Document databases

A

Chart databases

138
Q

Graph theory is a mathematical and computer science field that models relationships, or edges, between objects called ______.

nodes
scales
maps
buckets

A

nodes

139
Q

Document databases group documents into logical groups called ______.

collections
blocks
buckets
sets

A

collections

140
Q

Data collected or aggregated around a central topic or entity is said to be ______ aware.

feedback
aggregate
visually
transversally

A

aggregate