• 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/3

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;

3 Cards in this Set

  • Front
  • Back


CIS 336 Final Exam (Set 2) (Devry)



http://www.fres-courses.com/product/cis-336-final-exam-set-2-devry

CIS 336 Final Exam (Set 2) (Devry)


1. (TCO 1) Most DBMS are referred to as _____________database management systems.


2. (TCO 1) A relational DBMS provides protection of the _______________________ through security, control, and recovery facilities.


3. (TCO 2) If a foreign key contains either matching values or nulls, the table(s) that make use of such a foreign key is/are said to exhibit __________ integrity.


4. (TCO 2) A field that consists of integer values is a _________ type field.


5. (TCO 3) The PK must uniquely identify each entity instance. A primary key must be able to guarantee unique values. It cannot contain nulls. This rationale belongs to ____.


6. (TCO 3) A table that is in 1NF and includes no partial dependencies only is said to be in_____________.


7. (TCO 3) 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_____________.


8. (TCO 4) In Oracle, the DEFAULT constraint is used to ____________________.


1. (TCO 4) Which of the following is not considered a database object


2. (TCO 4) Which of the following SQL statements would you use to create a table named DEVRY?


3. (TCO 5) The ____ constraint requires that a specific condition be met before a record can be added to a table


4. (TCO 5) The ___________ model is both software and hardware dependent


5. (TCO 6) The _________________________ statement can be used to enable or disable a constraint


6. (TCO 6) When using the ALTER TABLE…DROP COLUMN command, which of the following is not correct?


7. (TCO 6) Which of the following keywords can be used to change the size, datatype, and/or default value of an existing column?


8. (TCO 7) Any type of subquery can be used in the _________ clause of a SELECT statement


1. (TCO 7) Using the BOOK_CUSTOMER and BOOK_ORDER tables shown below for references, which SQL statement will return the same results as the following SQL statement?


2. (TCO 7) If a Cartesian join is used to link table A which contains five rows to table B which contains eight rows, there will be _______ rows in the results


3. (TCO 8) Based upon the contents of the BOOK_ORDER table shown below, which of the following SQL statements will display the ship date for order 1006 as April 2, 2002?


4. (TCO 8) Based upon the contents of the BOOK_ORDER table shown below, which of the following SQL statements will display only those orders shipped to the zip code zone that begins with 323


5. (TCO 8) Which of the following functions determines the number of characters in a character string?


6. (TCO 9) Which of the following is not a valid SQL command?


7. (TCO 9) Using the promotion table shown below, which of the following SQL statements will insert a new row into the PROMOTION table?


8. (TCO 10) A ____ is a uniquely identifiable object that allows a given person to log on to the database


9. (TCO 10) Which command will delete a user account from Oracle9i?


1. (TCO 2) What is Character data?


2. (TCO 3) Explain the term “second normal form”.


3. (TCO 7) Sally needs to find all employees who have a date-of-hire between 01-JAN-2003 and 01-JAN-2005. She writes and executes the following query:


4. (TCO 8) In using group functions we cannot place a group function in a WHERE clause. Explain how the WHERE clause and HAVING clause are similar and why you can use the HAVING with a group function but not a WHERE clause


5. (TCO 6) Write the SQL statement that will remove the database table EMPLOYEE


1. (TCO 7) Write a join query using NATURAL JOIN that for every order in the ORDERS table will list the order number and order date along with the cusnumber, last name, and first name of the customer who placed the order.


2. (TCO 8) Write a query that will list the part number, part description, and on-hand value (units on hand * unit price) for each part in item class AP. Give the expression an alias of “On Hand Value”.


3. (TCO 8) Write a sub query that will list the part number, part description, and units on hand of all parts where the number of units on hand is greater than the average of units on hand for all parts.


4. (TCO 7) Using the BETWEEN operator, write a query that will list all details about all orders that were placed during the period of September 3rd thru September 5th of 1998.


5. (TCO 7) Write a query that will list the part number and part description for all parts in the PART table.



CIS 336 Final Exam (Set 2) (Devry)



http://www.fres-courses.com/product/cis-336-final-exam-set-2-devry​

CIS 336 Final Exam (Set 2) (Devry)


1. (TCO 1) Most DBMS are referred to as _____________database management systems.


2. (TCO 1) A relational DBMS provides protection of the _______________________ through security, control, and recovery facilities.


3. (TCO 2) If a foreign key contains either matching values or nulls, the table(s) that make use of such a foreign key is/are said to exhibit __________ integrity.


4. (TCO 2) A field that consists of integer values is a _________ type field.


5. (TCO 3) The PK must uniquely identify each entity instance. A primary key must be able to guarantee unique values. It cannot contain nulls. This rationale belongs to ____.


6. (TCO 3) A table that is in 1NF and includes no partial dependencies only is said to be in_____________.


7. (TCO 3) 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_____________.


8. (TCO 4) In Oracle, the DEFAULT constraint is used to ____________________.


1. (TCO 4) Which of the following is not considered a database object


2. (TCO 4) Which of the following SQL statements would you use to create a table named DEVRY?


3. (TCO 5) The ____ constraint requires that a specific condition be met before a record can be added to a table


4. (TCO 5) The ___________ model is both software and hardware dependent


5. (TCO 6) The _________________________ statement can be used to enable or disable a constraint


6. (TCO 6) When using the ALTER TABLE…DROP COLUMN command, which of the following is not correct?


7. (TCO 6) Which of the following keywords can be used to change the size, datatype, and/or default value of an existing column?


8. (TCO 7) Any type of subquery can be used in the _________ clause of a SELECT statement


1. (TCO 7) Using the BOOK_CUSTOMER and BOOK_ORDER tables shown below for references, which SQL statement will return the same results as the following SQL statement?


2. (TCO 7) If a Cartesian join is used to link table A which contains five rows to table B which contains eight rows, there will be _______ rows in the results


3. (TCO 8) Based upon the contents of the BOOK_ORDER table shown below, which of the following SQL statements will display the ship date for order 1006 as April 2, 2002?


4. (TCO 8) Based upon the contents of the BOOK_ORDER table shown below, which of the following SQL statements will display only those orders shipped to the zip code zone that begins with 323


5. (TCO 8) Which of the following functions determines the number of characters in a character string?


6. (TCO 9) Which of the following is not a valid SQL command?


7. (TCO 9) Using the promotion table shown below, which of the following SQL statements will insert a new row into the PROMOTION table?


8. (TCO 10) A ____ is a uniquely identifiable object that allows a given person to log on to the database


9. (TCO 10) Which command will delete a user account from Oracle9i?


1. (TCO 2) What is Character data?


2. (TCO 3) Explain the term “second normal form”.


3. (TCO 7) Sally needs to find all employees who have a date-of-hire between 01-JAN-2003 and 01-JAN-2005. She writes and executes the following query:


4. (TCO 8) In using group functions we cannot place a group function in a WHERE clause. Explain how the WHERE clause and HAVING clause are similar and why you can use the HAVING with a group function but not a WHERE clause


5. (TCO 6) Write the SQL statement that will remove the database table EMPLOYEE


1. (TCO 7) Write a join query using NATURAL JOIN that for every order in the ORDERS table will list the order number and order date along with the cusnumber, last name, and first name of the customer who placed the order.


2. (TCO 8) Write a query that will list the part number, part description, and on-hand value (units on hand * unit price) for each part in item class AP. Give the expression an alias of “On Hand Value”.


3. (TCO 8) Write a sub query that will list the part number, part description, and units on hand of all parts where the number of units on hand is greater than the average of units on hand for all parts.


4. (TCO 7) Using the BETWEEN operator, write a query that will list all details about all orders that were placed during the period of September 3rd thru September 5th of 1998.


5. (TCO 7) Write a query that will list the part number and part description for all parts in the PART table.



CIS 336 Final Exam (Set 2) (Devry)



http://www.fres-courses.com/product/cis-336-final-exam-set-2-devry​

CIS 336 Final Exam (Set 2) (Devry)


1. (TCO 1) Most DBMS are referred to as _____________database management systems.


2. (TCO 1) A relational DBMS provides protection of the _______________________ through security, control, and recovery facilities.


3. (TCO 2) If a foreign key contains either matching values or nulls, the table(s) that make use of such a foreign key is/are said to exhibit __________ integrity.


4. (TCO 2) A field that consists of integer values is a _________ type field.


5. (TCO 3) The PK must uniquely identify each entity instance. A primary key must be able to guarantee unique values. It cannot contain nulls. This rationale belongs to ____.


6. (TCO 3) A table that is in 1NF and includes no partial dependencies only is said to be in_____________.


7. (TCO 3) 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_____________.


8. (TCO 4) In Oracle, the DEFAULT constraint is used to ____________________.


1. (TCO 4) Which of the following is not considered a database object


2. (TCO 4) Which of the following SQL statements would you use to create a table named DEVRY?


3. (TCO 5) The ____ constraint requires that a specific condition be met before a record can be added to a table


4. (TCO 5) The ___________ model is both software and hardware dependent


5. (TCO 6) The _________________________ statement can be used to enable or disable a constraint


6. (TCO 6) When using the ALTER TABLE…DROP COLUMN command, which of the following is not correct?


7. (TCO 6) Which of the following keywords can be used to change the size, datatype, and/or default value of an existing column?


8. (TCO 7) Any type of subquery can be used in the _________ clause of a SELECT statement


1. (TCO 7) Using the BOOK_CUSTOMER and BOOK_ORDER tables shown below for references, which SQL statement will return the same results as the following SQL statement?


2. (TCO 7) If a Cartesian join is used to link table A which contains five rows to table B which contains eight rows, there will be _______ rows in the results


3. (TCO 8) Based upon the contents of the BOOK_ORDER table shown below, which of the following SQL statements will display the ship date for order 1006 as April 2, 2002?


4. (TCO 8) Based upon the contents of the BOOK_ORDER table shown below, which of the following SQL statements will display only those orders shipped to the zip code zone that begins with 323


5. (TCO 8) Which of the following functions determines the number of characters in a character string?


6. (TCO 9) Which of the following is not a valid SQL command?


7. (TCO 9) Using the promotion table shown below, which of the following SQL statements will insert a new row into the PROMOTION table?


8. (TCO 10) A ____ is a uniquely identifiable object that allows a given person to log on to the database


9. (TCO 10) Which command will delete a user account from Oracle9i?


1. (TCO 2) What is Character data?


2. (TCO 3) Explain the term “second normal form”.


3. (TCO 7) Sally needs to find all employees who have a date-of-hire between 01-JAN-2003 and 01-JAN-2005. She writes and executes the following query:


4. (TCO 8) In using group functions we cannot place a group function in a WHERE clause. Explain how the WHERE clause and HAVING clause are similar and why you can use the HAVING with a group function but not a WHERE clause


5. (TCO 6) Write the SQL statement that will remove the database table EMPLOYEE


1. (TCO 7) Write a join query using NATURAL JOIN that for every order in the ORDERS table will list the order number and order date along with the cusnumber, last name, and first name of the customer who placed the order.


2. (TCO 8) Write a query that will list the part number, part description, and on-hand value (units on hand * unit price) for each part in item class AP. Give the expression an alias of “On Hand Value”.


3. (TCO 8) Write a sub query that will list the part number, part description, and units on hand of all parts where the number of units on hand is greater than the average of units on hand for all parts.


4. (TCO 7) Using the BETWEEN operator, write a query that will list all details about all orders that were placed during the period of September 3rd thru September 5th of 1998.


5. (TCO 7) Write a query that will list the part number and part description for all parts in the PART table.