Filters
Question type

Study Flashcards

A missing value is called a null value.

Correct Answer

verifed

verified

A classic example of unneeded normalization is when we are dealing with ________.


A) ZIP codes
B) sales orders and line items
C) association patterns
D) multivalued dependencies
E) general purpose remarks columns

Correct Answer

verifed

verified

SQL statements can be used to create referential integrity statements for normalized tables and are created during the normalization process.

Correct Answer

verifed

verified

When you are given a set of tables and asked to create a database to store their data,the first step is to assess the tables' structure and content.

Correct Answer

verifed

verified

If you have a table with a set of columns named "Child01","Child02" and "Child03",the table has the multivalued,multicolumn problem.

Correct Answer

verifed

verified

Reviewing the work done on a table that was created using existing data from multiple sources,you are likely to find that some data values that were provided were never entered into the table.This is an example of ________.


A) the multivalued,multicolumn problem
B) the inconsistent values problem
C) the missing values problem
D) the general-purpose remarks column problem
E) None of the above is correct.

Correct Answer

verifed

verified

A null value in a column may indicate that there is an appropriate value for that attribute,and although the value is known no one has entered the value into the database.

Correct Answer

verifed

verified

When you are creating a database from existing data,you will have only minor problems with inconsistent values.

Correct Answer

verifed

verified

To count the number of rows in a table,use the SQL construct COUNT(ROWS).

Correct Answer

verifed

verified

Reviewing the work done on a table that was created using existing data from multiple sources,you are likely to find that a column named Remarks has been included,and is populated with inconsistent and verbose verbal data.This is an example of ________.


A) the multivalued,multicolumn problem
B) the inconsistent values problem
C) the missing values problem
D) the general-purpose remarks column problem
E) None of the above is correct.

Correct Answer

verifed

verified

Multivalued dependencies create anomalies so serious that multivalued dependencies must always be eliminated.

Correct Answer

verifed

verified

Read-only databases are often updated.

Correct Answer

verifed

verified

When a table is created using existing data from multiple sources,you are likely to find that some data values have never been provided.This is an example of ________.


A) the multivalued,multicolumn problem
B) the inconsistent values problem
C) the missing values problem
D) the general-purpose remarks column problem
E) None of the above is correct.

Correct Answer

verifed

verified

The second step in assessing table structure includes ________.


A) counting rows
B) examining columns
C) examining data values
D) A and B
E) B and C

Correct Answer

verifed

verified

The advantages of normalization include ________.


A) the elimination of modification anomalies
B) the elimination of duplicated data
C) more complex SQL for multitable subqueries and joins
D) A and B
E) A,B and C

Correct Answer

verifed

verified

The presence of one or more foreign keys in a relation means that we cannot eliminate duplicated data in that table.

Correct Answer

verifed

verified

When accessing table structure,how do you determine how many rows are in a table?

Correct Answer

verifed

verified

To determine how many rows are...

View Answer

When a table is created using existing data from multiple sources,you are likely to find that some data values that have never been provided are simply and obviously wrong and inappropriate.This is an example of ________.


A) the multivalued,multicolumn problem
B) the inconsistent values problem
C) the missing values problem
D) the general-purpose remarks column problem
E) None of the above is correct.

Correct Answer

verifed

verified

You have been given two tables,CUSTOMER and SALE.You want to check the referential integrity constraint: SALE.CustomerNumber must exist in CUSTOMER.CustomerNumber You run the following SQL query: SELECT CustomerNumber FROM SALE WHERE CustomerNumber NOT IN (SELECT CustomerNumber FROM SALE,CUSTOMER WHERE SALE.CustomerNumber = CUSTOMER.CustomerNumber) ; What is shown in the results of this query?


A) All values of CustomerNumber that match the constraint.
B) All values of CustomerNumber that violate the constraint.
C) All values of CustomerNumber where
SALE.CustomerNumber = CUSTOMER.CustomerNumber.
D) A and C
E) B and C

Correct Answer

verifed

verified

When accessing table structure,how do you determine the number and types of columns in a table?

Correct Answer

verifed

verified

To determine the number and types of how...

View Answer

Showing 81 - 100 of 100

Related Exams

Show Answer