Design Final 4

  • Uploaded by: Alex
  • 0
  • 0
  • June 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Design Final 4 as PDF for free.

More details

  • Words: 2,906
  • Pages: 17
This watermark does not appear in the registered version - http://www.clicktoconvert.com

Section 12 Lesson 1(Answer all questions in this section)

1. A foreign key can not refer

to a primary key in the same table. True or False? True False 2. Identify all of the incorrect statements that complete this sentence: A primary key is: (Choose Three) (Choose all correct answers) A single column that uniquely identifies each column in a table One or more columns in a table that uniquely identifies each row in that table A set of columns in one table that uniquely identifies each row in another table Only one column that must be null 3. A table must have a primary key. True or False? True False 4. If a primary key is a set of columns then one column must be null. True or False? True False Section 12 Lesson 2(Answer all questions in this section) 5. Why would this table name NOT work in an Oracle database? This_year_end+next_year Table names must begin with an alphabetic character Too long The Plus sign + is not allowed in object names None of the above 6. The transformation from an ER diagram to a physical design involves changing terminology. Secondary Unique Identifiers becomes Columns Tables

This watermark does not appear in the registered version - http://www.clicktoconvert.com

Unique Constraints Primary Key Constraints 7. In an Oracle database, why would 1_TABLE not work as a table name? Review (1) Points The database does not understand all capital letters

Mark for

There is no problem here. You can create a table called 1_TABLE Object names must not start with a number. They must begin with a letter TABLE is a reserved word Section 12 Lesson 3(Answer all questions in this section) 8. It is possible to implement non-transferability via a simple Foreign Key Relationship. True or False? Mark for Review (1) Points True False 9. One-to-One relationships are transformed into Check Constraints in the tables created at either end of that relationship. True or False? (1) Points True

Mark for Review

False Section 12 Lesson 4(Answer all questions in this section) 10. An "Arc Implementation" can be done just like any other Relationship - you simply add the required Foreign Keys. True or False? (1) Points True

Mark for Review

False Section 12 Lesson 4(Answer all questions in this section) 11. When translating an arc relationship to a physical design, you must turn the arc relationships into foreign keys. Assuming you are implementing an Exclusive Design, you must also create two Unique Key Constraints to ensure the Arc is implemented correctly. True or False? (1) Points True

Mark for Review

This watermark does not appear in the registered version - http://www.clicktoconvert.com

False Section 13 Lesson 1(Answer all questions in this section) DESCRIBE command returns all rows from a table. True or False? (1) Points True

12. The

Mark for Review

False 13. What command can used to create a new row in a table in the database? Review (1) Points CREATE

Mark for

NEW ADD INSERT Section 16 Lesson 1(Answer all questions in this section) listing columns in the SELECT list, what should you use to separate the columns? Review (1) Points Commas

14. When Mark for

Semicolons Dashes Underscores 15. You want to create a list of all albums that have been produced by the company. The list should include the title of the album, the artist's name, and the date the album was released. The ALBUMS table includes the following columns: ALB_TITLE VARCHAR2(150) NOT NULL ALB_ARTIST VARCHAR2(150) NOT NULL ALB_DATE DATE NOT NULL Which statement can you use to retrieve the necessary information? Mark for Review (1) Points SELECT *

This watermark does not appear in the registered version - http://www.clicktoconvert.com

FROM albums; SELECT alb_title, alb_artist, alb_dates FROM album; SELECT * FROM album; SELECT alb_title; alb_artist; alb_date FROM albums; 16. Which SQL keyword specifies that an alias will be substituted for a column name in the output of a SQL query? (1) Points AS

Mark for Review

OR AND SUBSTITUTE 17. If a SQL statement returns data from two or more tables, which SQL capability is being used? (1) Points Selection

Mark for Review

Projection Joining Insertion 18. In which clause of a SELECT statement would you specify the name of the table or tables being queried? (1) Points the FROM clause

Mark for Review

the SELECT clause the WHERE clause Any of the above options, you can list tables wherever you want to in a SELECT statement. 19. Evaluate this SELECT statement:

This watermark does not appear in the registered version - http://www.clicktoconvert.com

SELECT (salary * raise_percent) raise FROM employees; If the RAISE_PERCENT column only contains null values, what will the statement return? Mark for Review (1) Points Only zeroes Only null values A null value or a zero depending on the value of the SALARY column A null value or a numeric value depending on the value of the SALARY column 20. The EMPLOYEES table contains these columns: SALARY NUMBER(7,2) BONUS NUMBER(7,2) COMMISSION_PCT NUMBER(2,2) All three columns contain values greater than zero. There is one row of data in the table and the values are as follows: Salary = 500, Bonus = 50, Commission_pct = .5 Evaluate these two SQL statements: 1. SELECT salary + bonus + commission_pct * salary - bonus AS income FROM employees; 2. SELECT (salary + bonus ) + commission_pct * (salary - bonus) income FROM employees; What will be the result? Mark for Review (1) Points Statement 1 will return a higher value than statement 2. Statement 2 will return a higher value than statement 1.

This watermark does not appear in the registered version - http://www.clicktoconvert.com

Statement 1 will display a different column heading. One of the statements will NOT execute. Section 16 Lesson 3(Answer all questions in this section) 21. You cannot use computers unless you completely understand exactly how they work. True or False? Mark for Review (1) Points True False 22. There is only one kind of software used by all computers. True or Fale? Mark for Review (1) Points True False Section 17 Lesson 1(Answer all questions in this section) The Concatenation Operator does which of the following? (1) Points Links rows of data together inside the database.

23.

Mark for Review

Links two or more columns or literals to form a single output column Is represented by the asterisk (*) symbol Separates columns. 24. When using the LIKE condition, which symbol represents any sequence of none, one or more characters? (1) Points

Mark for Review

_ % # & 25. Which of the following elements cannot be included in a WHERE clause? Mark for Review (1) Points

This watermark does not appear in the registered version - http://www.clicktoconvert.com

A column alias A column name A comparison condition A constant 26. You need to display employees whose salary is in the range of 30000 and 50000. Which comparison operator should you use? (1) Points

Mark for Review

IN LIKE BETWEEN...AND... IS NULL 27. Which clause would you include in a SELECT statement to restrict the data returned to only the employees in department 10? (1) Points WHERE

Mark for Review

FROM SELECT IS 28. You need to combine the FIRST_NAME and LAST_NAME columns in the EMPLOYEES table and display the columns as a combined character string. Which operator should you use? (1) Points

Mark for Review

+ | || AND Section 17 Lesson 2(Answer all questions in this section) What will the result of the following SELECT statement be:

29.

This watermark does not appear in the registered version - http://www.clicktoconvert.com

SELECT last_name, salary, salary + 300 FROM employees; Mark for Review (1) Points Display the last name, salary and the results of adding 300 to each salary for all the employees Modify the salary column by adding 300 and displaying the last name, salary and the new salary. Modify the salary column by adding 300 and only display the last name and the new salary. Display the last name, salary and the results of adding 300 to the salary of the first employee row 30. The PLAYERS table contains these columns: PLAYER_ID NUMBER (9) Primary Key LAST_NAME VARCHAR2 (20) FIRST_NAME VARCHAR2 (20) TEAM_ID NUMBER (4) MANAGER_ID NUMBER (9) POSITION_ID NUMBER (4) Which SELECT statement should you use if you want to display unique combinations of the TEAM_ID and MANAGER_ID columns? Mark for Review (1) Points SELECT * FROM players; SELECT team_id, manager_id FROM players; SELECT DISTINCT team_id, manager_id FROM players; SELECT team_id, DISTINCT manager_id FROM players; SELECT team_id, manager_id DISTINCT FROM players; Section 17 Lesson 2(Answer all questions in this section) 31. You want to retrieve a list of customers whose last names begin with the letters Fr . Which keyword should you include in the WHERE clause of your SELECT statement to achieve the desired result? Review (1) Points AND IN

Mark for

This watermark does not appear in the registered version - http://www.clicktoconvert.com

BETWEEN LIKE 32. Evaluate this SELECT statement: SELECT * FROM employees WHERE department_id IN(10, 20, 30) AND salary > 20000; Which values would cause the logical condition to return TRUE? Mark for Review (1) Points DEPARTMENT_ID = 10 and SALARY = 20000 DEPARTMENT_ID = 20 and SALARY = 20000 DEPARTMENT_ID = null and SALARY = 20001 DEPARTMENT_ID = 10 and SALARY = 20001 33. You need write a SELECT statement that should only return rows that contain 34, 46, or 48 for the DEPARTMENT_ID column. Which operator should you use in the WHERE clause to compare the DEPARTMENT_ID column to this specific list of values? Review (1) Points =

Mark for

!= IN BETWEEN..AND.. Section 17 Lesson 3(Answer all questions in this section) 34. You want to create a report that displays all employees who were hired before January 1, 2000 and whose annual salaries are greater than 50000. The EMPLOYEES table contains these columns: EMPLOYEE_ID VARCHAR2(5) PRIMARY KEY LAST_NAME VARCHAR2(35) HIRE_DATE DATE DEPARTMENT_ID NUMBER(4)

This watermark does not appear in the registered version - http://www.clicktoconvert.com

The SALARY table contains these columns: SALARY_ID VARCHAR2(5) PRIMARY KEY SALARY NUMBER(5, 2) EMPLOYEE_ID VARCHAR2(5) FOREIGN KEY Which query should you issue? Mark for Review (1) Points SELECT last_name, hiredate, salary FROM employees NATURAL JOIN salary USING employee_id WHERE hiredate < 01-jan-00 AND salary > 50000; SELECT last_name, hiredate, salary FROM employees JOIN salary ON employee_id = employee_id WHERE hiredate < '01-jan-00' AND salary > 50000; SELECT last_name, hiredate, salary FROM employees NATURAL JOIN salary WHERE hiredate < '01-jan-00' AND salary > 50000; SELECT last_name, hiredate, salary FROM employees (+) salary WHERE hiredate < '01-jan-00' AND salary > 50000; 35. If you write queries using the BETWEEN operator it does not matter in what order you enter the values, i.e. BETWEEN low value AND high value will give the same result as BETWEEN high value AND low value. True or False? (1) Points True

Mark for Review

False 36. The PRODUCT table contains these columns: PRODUCT_ID NUMBER(9) DESCRIPTION VARCHAR2(20) COST NUMBER(5,2) LOCATION_ID VARCHAR2(10) You want to display product costs with these desired results: 1. The cost displayed for each product is increased by 10 percent. 2. The product location id must be 4859, 9789, or 9898. 3. Ten percent of the original cost is less than $10.

This watermark does not appear in the registered version - http://www.clicktoconvert.com

Which statement should you issue? Mark for Review (1) Points SELECT product_id, cost * 1.10 FROM product WHERE cost * .10 < 10.00 AND location_id IN (4859, 9789, 9898); SELECT product_id, cost * .10 FROM product WHERE cost * 1.10 > 10.00 AND location_id IN (4859, 9789, 9898); SELECT product_id, cost * 1.10 FROM product WHERE cost * 1.10 < 10.00 AND location_id = (4859, 9789, 9898); SELECT product_id, cost * 1.10 FROM product WHERE cost * .10 > 10.00 AND location_id = (4859, 9789, 9898); Section 18 Lesson 1(Answer all questions in this section) comparison condition means "Less Than or Equal To?" (1) Points "=)"

37. Which

Mark for Review

"+<" ">=" "<=" 38. You need to replace null values in the DEPARTMENT_ID column with a zero (0). Which function should you use? (1) Points NVL NULL NULLIF REPLACE

Mark for Review

This watermark does not appear in the registered version - http://www.clicktoconvert.com

39. Which clause would you include in a SELECT statement to sort the rows returned by the LAST_NAME column? (1) Points ORDER BY

Mark for Review

WHERE FROM HAVING 40. Which of the following are TRUE regarding the logical AND operator? for Review (1) Points TRUE AND TRUE return FALSE

Mark

TRUE AND FALSE return TRUE FALSE AND TRUE return NULL TRUE AND FALSE return FALSE Section 18 Lesson 1(Answer all questions in this section)

41. From left to right, what is

the correct order of Precedence? Mark for Review (1) Points Arithmetic, Concatenation, Comparison, OR NOT, AND, OR, Arithmetic Arithmetic, NOT, Logical, Comparison Arithmetic, NOT, Concatenation, Logical 42. Which statement about the default sort order is true? (1) Points The lowest numeric values are displayed last. The earliest date values are displayed first. Null values are displayed first. Character values are displayed in reverse alphabetical order.

Mark for Review

This watermark does not appear in the registered version - http://www.clicktoconvert.com

Section 18 Lesson 2(Answer all questions in this section) this SELECT statement: SELECT last_name, first_name, email FROM employees ORDER BY email; If the EMAIL column contains null values, which statement is true? Mark for Review (1) Points Null email values will be displayed first in the result. Null email values will be displayed last in the result. Null email values will not be displayed in the result. The result will not be sorted. 44. You query the database with this SQL statement: SELECT price FROM products WHERE price IN(1, 25, 50, 250) AND (price BETWEEN 25 AND 40 OR price > 50); Which two values could the statement return? (Choose two.) Mark for Review (1) Points (Choose all correct answers) 1 50 25 10 250 100 45. Evaluate this SELECT statement:

43. Evaluate

This watermark does not appear in the registered version - http://www.clicktoconvert.com

SELECT employee_id, last_name, first_name, salary 'Yearly Salary' FROM employees WHERE salary IS NOT NULL ORDER BY last_name, 3; Which clause contains an error? Mark for Review (1) Points SELECT employee_id, last_name, first_name, salary 'Yearly Salary' FROM employees WHERE salary IS NOT NULL ORDER BY last_name, 3; 46. You need to create a report to display all employees that were hired on or before January 1, 1996. The data should display in this format: Employee 14837 - Smith

Start Date and Salary 10-MAY-92 / 5000

Which SELECT statement could you use? Mark for Review (1) Points SELECT employee_id || - || last_name "Employee", hire_date || / || salary "Start Date and Salary" FROM employees WHERE hire_date <= '01-JAN-96'; SELECT employee_id ||' '|| last_name "Employee", hire_date ||' '|| salary "Start Date and Salary" FROM employees WHERE hire_date <= '01-JAN-96'; SELECT employee_id ||'"- "|| last_name "Employee", hire_date ||" / "|| salary "Start Date and Salary" FROM employees WHERE hire_date <= '01-JAN-96'; SELECT employee_id ||' - '|| last_name 'Employee', hire_date ||' / '|| salary 'Start Date and Salary' FROM employees WHERE hire_date <= '01-JAN-96';

This watermark does not appear in the registered version - http://www.clicktoconvert.com

SELECT employee_id ||' - '|| last_name "Employee", hire_date ||' / '|| salary "Start Date and Salary" FROM employees WHERE hire_date <= '01-JAN-96'; 47. Evaluate this SELECT statement: SELECT * FROM employees WHERE department_id = 34 OR department_id = 45 OR department_id = 67; Which operator is the same as the OR conditions used in this SELECT statement? Mark for Review (1) Points IN AND LIKE BETWEEN ... AND ... 48. Evaluate this SELECT statement: SELECT * FROM employees WHERE salary > 30000 AND department_id = 10 OR email IS NOT NULL; Which statement is true? Mark for Review (1) Points The OR condition will be evaluated before the AND condition. The AND condition will be evaluated before the OR condition. The OR and AND conditions have the same precedence and will be evaluated from left to right The OR and AND conditions have the same precedence and will be evaluated from right to left

This watermark does not appear in the registered version - http://www.clicktoconvert.com

Section 18 Lesson 3(Answer all questions in this section) PLAYERS table contains these columns:

49. The

PLAYERS TABLE: LAST_NAME VARCHAR2 (20) FIRST_NAME VARCHAR2 (20) SALARY NUMBER(8,2) TEAM_ID NUMBER(4) MANAGER_ID NUMBER(9) POSITION_ID NUMBER(4) You want to display all players' names with position 6900 or greater. You want the players names to be displayed alphabetically by last name and then by first name. Which statement should you use to achieve the required results? Mark for Review (1) Points SELECT last_name, first_name FROM players WHERE position_id >= 6900 ORDER BY last_name, first_name; SELECT last_name, first_name FROM players WHERE position_id > 6900 ORDER BY last_name, first_name; SELECT last_name, first_name FROM players WHERE position_id <= 6900 ORDER BY last_name, first_name; SELECT last_name, first_name FROM players WHERE position_id >= 6900 ORDER BY last_name DESC, first_name; 50. Evaluate this SQL statement: SELECT e.employee_id, e.last_name, e.first_name, m.manager_id FROM employees e, employees m ORDER BY e.last_name, e.first_name WHERE e.employee_id = m.manager_id; This statement fails when executed. Which change will correct the problem?

This watermark does not appear in the registered version - http://www.clicktoconvert.com

Mark for Review (1) Points Reorder the clauses in the query. Remove the tables aliases in the WHERE clause. Remove the table aliases in the ORDER BY clause. Include a HAVING clause.

Related Documents

Design Final 4
June 2020 1
Design 4
May 2020 1
Final 4
May 2020 6
Design Final 1
June 2020 5
Design Final 2.pdf
November 2019 19

More Documents from "Suk Na"

Plans.pdf
November 2019 75
Tapas.docx
April 2020 45
Actividadnro01.xlsx
April 2020 59
Plans.pdf
November 2019 84
Lectura Nro 01.docx
April 2020 37