Title: CIS 336 Redefined Education--cis336.com
1CIS 336 Redefined Education--cis336.com
2CIS 336 Redefined Education--cis336.com
CIS 336 Final Exam (Feb 2016) For more course
tutorials visit www.cis336.com CIS 336 Final
Exam Question 1. 1. (TCO 1) A DBMS performs
several important functions that guarantee the
integrity and consistency of the data in the
database. Which of the following is NOT one of
those functions?
3CIS 336 Redefined Education--cis336.com
CIS 336 Final Exam 1 (Devry) For more course
tutorials visit www.cis336.com 1. (TCO 1) Most
DBMS are referred to as _____________database
management systems. (Points 4) elemental linked
hierarchical relational 2. (TCO 1) Data
constitutes the building blocks of _____________.
(Points 4) information
4CIS 336 Redefined Education--cis336.com
CIS 336 Final Exam 2 (Devry) For more course
tutorials visit www.cis336.com 1. (TCO 1) Most
DBMS are referred to as _____________database
management systems. (Points 4) elemental linked
hierarchical relational
5CIS 336 Redefined Education--cis336.com
CIS 336 Final Exam 3 (Devry) For more course
tutorials visit www.cis336.com 1. (TCO 2)
Explain what physical independence means. (Points
15) 2. (TCO 8) Sally wants to query the EMP
table and determine how many of the employees
live in each of the cities the company has
factories in. She writes the following query but
it does not work. What is wrong with the way the
query is constructed?
6CIS 336 Redefined Education--cis336.com
CIS 336 Final Exam 4 (Devry) For more course
tutorials visit www.cis336.com 1. (TCO 7) For
every order, list the order number, order date,
part number, part description, and item class for
each part that makes up the order. 2. (TCO 8)
Write a query that will display the customer
number, last name, and first name for every
customer I whose first name begins with the
letter "D".
7CIS 336 Redefined Education--cis336.com
CIS 336 Final Exam 4 Sets of Answers (Devry)
For more course tutorials visit www.cis336.com
CIS 336 Final Exam 4 Sets of Answers
8CIS 336 Redefined Education--cis336.com
CIS 336 Group Project For more course tutorials
visit www.cis336.com This project is designed
to touch all aspects of the fundamental concepts
of database design and logical data modeling
covered during the class. Each student will be
responsible for designing, developing, and
demonstrating the functionality of a database
created based on a set of business specifications
that you create. At the end of the session, each
student will submit a report that includes the
logical and physical design
9CIS 336 Redefined Education--cis336.com
CIS 336 iLab 1 Normal Forms and Entity
Relationship Diagrams For more course tutorials
visit www.cis336.com CIS336 Lab 1 Normal Forms
and Entity Relationship Diagrams Introduction In
this exercise, you will analyze a de-normalized
data set presented in the form of a spreadsheet.
You will next construct a series
10CIS 336 Redefined Education--cis336.com
CIS 336 iLab 2 The Expanded Entity Relationship
Diagram For more course tutorials
visit www.cis336.com CIS336 Lab 2 The Expanded
Entity Relationship Diagram LAB OVERVIEW Scenario
and Summary This lab introduces the next step in
creating a data model, the Entity Relationship
Diagram (ERD). You will be given a business
scenario
11CIS 336 Redefined Education--cis336.com
CIS 336 iLab 3 Building the Physical For more
course tutorials visit www.cis336.com CIS-336
Lab 3 Building the Physical LAB
OVERVIEW Scenario and Summary The lab for this
week addresses taking a logical database design
(data model) and transforming it into a physical
model (tables, constraints, and relationships).
12CIS 336 Redefined Education--cis336.com
CIS 336 iLab 4 Introduction to Select, Insert,
Update, and Delete Statements (only SQL Command,
No output) For more course tutorials
visit www.cis336.com CIS336 Lab 4
Introduction to Select, Insert, Update, and
Delete Statements LAB OVERVIEW Lab 4 will
introduce the various aspects of the SQL select
statement and the methods of retrieving data from
the database tables.
13CIS 336 Redefined Education--cis336.com
CIS 336 iLab 5 Joining Tables For more course
tutorials visit www.cis336.com CIS336 Lab5
Joining Tables LAB OVERVIEW Scenario and
Summary Lab 5 will introduce the concept of
multi-table JOINS in order to work with data in
two or more related tables simultaneously. This
lab may be
14CIS 336 Redefined Education--cis336.com
CIS 336 iLab7 Working with Views For more
course tutorials visit www.cis336.com CIS-336
Lab7 Working with Views LAB OVERVIEW Lab 7 will
introduce the concept of database views. This lab
may be completed using either DeVrysOmnymbus
EDUPE-APP lab environment, or a local copy of the
MySQL database running on your own computer using
15CIS 336 Redefined Education--cis336.com
CIS 336 Quiz 1 (Devry) For more course
tutorials visit www.cis336.com (TCO 3)
Normalization works through a series of stages
called normal forms. Typically _________ stages
must be completed before a table can be
considered normalized. (TCO 3) The conflicts
between design efficiency, information
requirements, and processing speed are often
resolved through (TCO 3) The PK must uniquely
identify each entity instance. A primary key must
be able to guarantee unique values. It cannot
contain nulls.
16CIS 336 Redefined Education--cis336.com
CIS 336 Quiz 2 (Devry) For more course
tutorials visit www.cis336.com (TCO 2) Explain
what a composite attribute is (TCO 1) Data
constitutes the building blocks of (TCO 1)
Successful database design is first and foremost
based on _____________ requirements. (TCO 1) The
lowest level in a database hierarchy is the
____________ or value as it is often referred
17CIS 336 Redefined Education--cis336.com
CIS 336 Quiz 3 (Devry) For more course
tutorials visit www.cis336.com (TCO 7) Which of
the following types of columns will automatically
right-align the data when it is displayed? (TCO
7) Which of the following SQL statements will
display the profit generated by each book
currently stored in the BOOKS table? (You do not
need to see the table structure for this
question)
18CIS 336 Redefined Education--cis336.com
CIS 336 Quiz 4 (Devry) For more course
tutorials visit www.cis336.com (TCO 8) 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. (TCO 8) Which of the following
statements will produce the value 21.1? (TCO 8)
Which of the following format elements will
display insignificant leading zeros?
19CIS 336 Redefined Education--cis336.com
CIS 336 Quiz 5 (Devry) For more course
tutorials visit www.cis336.com (TCO 6) Which of
the following keywords is used to remove a row in
a table? (TCO 6) When using the ALTER
TABLE...DROP COLUMN command, which of the
following is NOT correct? (TCO 6) Which of the
following commands will add a new column named
FIRSTORDERDATE to the CUSTOMERS
20CIS 336 Redefined Education--cis336.com
CIS 336 Week 2 Quiz (New) For more course
tutorials visit www.cis336.com CIS 336 Week 2
Quiz Question 1. (TCO 1) Raw
facts, such as a telephone number, a birth date,
and a customer name, are also referred to as
_____ Question 2. (TCO 1) The
DBMS allows you to extrapolate information from
your data by using a _____ Question 3.
(TCO 1) A database row (record) consists of
_____
21CIS 336 Redefined Education--cis336.com
CIS 336 Week 3 Quiz (New) For more course
tutorials visit www.cis336.com CIS 336 Week 3
Quiz Question 1. (TCO 3) When
designing a database, you should _____ Question
2. (TCO 3) A table that is in
1NF and includes no partial dependencies only is
said to be in _____
22CIS 336 Redefined Education--cis336.com
CIS 336 Week 4 Quiz (New) For more course
tutorials visit www.cis336.com CIS 336 Week 4
Quiz Question 1. (TCO 7) Which
of the following types of columns will
automatically right-align the data when it is
displayed? Question 2. (TCO 7)
Which of the following symbols can be used to
denote that any and all characters following the
sign are eligible when used with LIKE?
23CIS 336 Redefined Education--cis336.com
CIS 336 Week 5 Quiz (New) For more course
tutorials visit www.cis336.com CIS 336 Week 5
Quiz Question 1. (TCO 8) The
____ set operator in SQL combines rows from two
queries and returns only the values that are
common between the two sets.
24CIS 336 Redefined Education--cis336.com
CIS 336 Week 6 Quiz (New) For more course
tutorials visit www.cis336.com CIS 336 Week 6
Quiz Question 1. (TCO 6) Which
of the following keywords can be used to change
the size, datatype, or default value of an
existing column?
25CIS 336 Redefined Education--cis336.com
CIS336 iLab 6 Group Functions and Subqueries
For more course tutorials visit www.cis336.com
CIS336 Lab 6 Group Functions and Subqueries LAB
OVERVIEW Scenario and Summary Lab 6 will
introduce the concept of group functions and
subqueries to meet more complex report
requirements.
26CIS 336 Redefined Education--cis336.com