Database Final3

Is this your test? Login to manage it. If not, you can develop a quiz just like it.

This is a non-interactive preview of the quiz content.

1.
1 point
The maintenance and evolution phase of the DBLC involves ____.
2.
1 point
The first step in the ER model verification process is to ____.
3.
1 point
A(n) ______ join will select only the rows with common values in the common attribute(s)
4.
1 point
The initial assessment and the feasibility study are part of the SDLC's ____ phase.
5.
1 point
____ requires that all operations of a transaction be completed.
6.
1 point
A consistent database is ____.
7.
1 point
The first step in developing the conceptual model using ER diagrams is to ____.
8.
1 point
Analyzing the company situation is part of the ____ phase of the DBLC.
9.
1 point
A transaction is a ____ unit of work that must be either entirely completed or aborted.
10.
1 point
The conceptual design step that identifies ER modules and validates insert, update, and delete rules is ____.
11.
1 point
In Oracle, ______ make(s) it possible to merge SQL and traditional programming constructs, such as variables, conditional processing (IF-THEN-ELSE), basic loops (FOR and WHILE loops,) and error trapping
12.
1 point
A ____ lock locks the entire table preventing access to any row by a transaction while another transaction
13.
1 point
________ is a relational set operator
14.
1 point
The database is loaded during the ____ phase of the SDLC.
15.
1 point
A _______ join returns rows with matching values and includes all rows from both tables (T1 and T2) with unmatched values
16.
1 point
The ____ approach to scheduling concurrent transactions assigns a global unique stamp to each transaction.
17.
1 point
A(n) _______ join returns not only the rows matching the join condition (this is, rows with matching values in the common columns) but also the rows with unmatched values
18.
1 point
A ____ lock prevents the use of any tables in the database from one transaction while another transaction is being processed.
19.
1 point
____ are required to prevent another transaction from reading inconsistent data.
20.
1 point
The ANSI has defined standards that govern SQL database transactions. Transaction support is provided by two SQL statements: ____ and ROLLBACK.
21.
1 point
Installation and fine tuning are part of the ____ phase of the SDLC.
22.
1 point
One of the three most common data integrity and consistency problems is ____.
23.
1 point
The ____ design is the process of selecting the data storage and data access characteristics of the database.
24.
1 point
As long as two transactions, T1 and T2, access ____ data, there is no conflict, and the order of execution is irrelevant to the final outcome.
25.
1 point
The syntax for the UNION query is _________
26.
1 point
There are ____ classical approaches to database design.
27.
1 point
A ____ lock allows concurrent transactions to access different rows of the same table.
28.
1 point
Assume you are using the UNION operator to combine the results from two tables with identical structure CUSTOMER and CUSTOMER_2. The CUSTOMER table contains 10 rows, while the CUSTOMER_2 table contains 7 rows. Customers Dunne and Olowski are included in the CUSTOMER table as well as in the CUSTOMER_2 table. How many records are returned when using the UNION operator?
29.
1 point
The process of creating an information system is known as ____ development.
30.
1 point
____ allow(s) physical access to areas by authorized personnel only.
31.
1 point
In a sbuquery, the _______ query is executed first
32.
1 point
The _______ function returns the current system date in MS Access
33.
1 point
The PL/SQL block starts with the ________ clause
34.
1 point
The database initial study phase of the DBLC involves ____.
35.
1 point
During decentralized design, after the ____ process has been completed, all modules are integrated into one conceptual model.
36.
1 point
A ____ lock locks the entire diskpage.
37.
1 point
A(n) ____ lock exists when concurrent transactions are granted read access on the basis of a common lock.
38.
1 point
When using Oracle TO_NUMBER function to convert a character string into a number, ______ represents a digit
39.
1 point
The __________ statement in SQL combines rows from two queries and returns only the rows that appear in the first set but not in the second
40.
1 point
The implementation and loading phase of the DBLC involves ____.
41.
1 point
The ____ manager is responsible for assigning and policing the locks used by the transactions.
42.
1 point
The following SQL statement uses (an) ________.
SELECT P_CODE, P_DESCRIPT, P_PRICE, V_NAME
FROM PRODUCT, VENDOR
WHERE PRODUCT V_CODE = VENDOR.V_CODE
43.
1 point
A(n) _________ is a block of code(containing standard SQL statements and procedural extensions) that is stored and executed at the DBMS server
44.
1 point
The information stored in the ____ is used by the DBMS for a recovery requirement triggered by a ROLLBACK statement, a program’s abnormal termination, or a system failure such as a network discrepancy or a disk crash.
45.
1 point
When using a(n) _______ join, only rows that meet the given criteria are returned