SlideShare a Scribd company logo
1 of 24
BIS 345 Final Exam Guide Set 1 NEW
Check this A+ tutorial guideline at
http://www.assignmentcloud.com/bis-
345/bis-345-final-exam-guide-set-1-new
For more classes visit
http://www.assignmentcloud.com
BIS 345 Final Exam Guide Set 1 NEW
1. (TCO 1) Which of the following sets of SQL
clauses represent the minimum combination of
clauses to make a working SQL statement?
(Points
: 5)
SELECT, WHERE FROM, WHERE SELECT, FROM
FROM, ORDER BY
2. (TCO 1) Which of the following would be
considered a logical operator? (Points : 5)
>= AND
IS NULL
3. (TCO 1) Which of the following is true about
ORDER BY clauses? (Points : 5)
The default order is ascending when none is
specified.
Numerical columns are sorted from highest to
lowest where no sort order is specified.
Columns on which sorting must be conducted
cannot be identified by their position in their
table.
Character columns are evaluated from right to
left.
4. (TCO 1) Which of the following would extract all
rows containing the numbers 4 or 8? (Points : 5)
WHERE number = 4 or number = 8
WHERE number BETWEEN 4 and 8
WHERE number = '4 or 8'
Where number = '4' or '8'
5. (TCO 1) Assume you want to associate a
TaxpayerTable with a PrincipalResidenceTable.
The PrincipalResidentTable contains the
address where each taxpayer lives. Assume that
each taxpayer can have only one residence;
however, more than one person at the address
can be considered a taxpayer. What is the
relationship between the TaxpayerTable and
PrincipalResidenceTable? (Points : 5)
Many-To-One
One-To-Many
Many-to-Many
One-to-One
6. (TCO 1) Which of the following would display
values from the city field in the Professor table,
removing all duplicate city names? (Points : 5)
SELECT City DISTINCT FROM Professor
SELECT City FROM DISTINCT Professor
SELECT DISTINCT City FROM Professor
SELECT DISTINCT FROM Professor
7. (TCO 1) Assume you have a table called
StudentTable. You would like to extract the
lastname of all students who have not yet declared
their major. Which of the following WHERE clauses
would accomplish this? (Points : 5)
WHERE major = " "
WHERE major = ' '
WHERE major IS NULL
WHERE major = 'NULL'
8. (TCO 3) Which of the following statements
would count the number of customers within each
state?
Assume you have a table with the following
columns:
(Points : 5)
SELECT State, Count(*)
FROM CustomerTable GROUP BY State;
SELECT CustomerID, Count(State)
FROM CustomerTable GROUP BY CustomerID;
SELECT State, Count(CustomerID)
FROM CustomerTable;
None of the above.
9. (TCO 3) Which of the following statements
would the extract average income of the customers
in each city? Assume you have a table with the
following columns:
(Points : 5)
SELECT City, Avg(Income)
FROM CustomerTable GROUP BY City;
SELECT State, Avg(Income)
FROM CustomerTable GROUP BY State;
SELECT City, Average(Income)
FROM CustomerTable GROUP BY City;
SELECT State, Average(Income)
FROM CustomerTable GROUP BY State;
10. (TCO 4) Query_is the complete process
from submission of a query to its actual
execution.
(Points : 5)
optimization
compilation
insertion
None of the above
11. (TCO 4) Assume you have two queries that
must extract all rows that have a value of greater
than $100 in an Income column. You are
considering two ways of writing your WHERE
clause. The first option is to extract all columns
that are NOT less than or equal to $100. The
second option is to extract all columns that are
greater than $100. Which option should you
choose to ensure your query runs as quickly as
possible? (Points : 5)
The first option
The second option
It doesn't matter which option you pick; they
will run the same no matter what.
All of the above
12. (TCO 7) Which of the file formats can be
viewed using Adobe Acrobat Reader?
(Points : 5)
CSV
PDF
TIFF
XLSX
13. (TCO 8) Name the security concept
involves ensuring that one person doesn't
have control over too many steps in a process.
(Points : 5)
zroles
Separation of duties Securing forms and
reports Using views
14. (TCO 8)_encryption offers a more granular
level of encryption. (Points : 5)
Role based
Object-based security Column-level None of the
above
15. (TCO 9) Which of the following reports
requires the reader to read down columns to
understand its meaning? (Points : 5)
Matrix
Exception
Tabular
None of the above
16. (TCO 9) Assume you are creating a report
which is sorted by class, and then by student
within class. The class is considered the
column: (Points : 5)
gross
minor
major
None of the above
17. (TCO 9) Aggregation functions help grouping
scenarios by providing_for groups.
(Points : 5)
totals
subtotals
titles
expressions
18. (TCO 10) Which of the following represent a
popular report-writing tool that is not a Microsoft
application? (Points : 5)
Access Reports
SSRS
SSMS
Crystal Reports
19. (TCO 10) Which of the following is NOT one of
the formats available for reports? (Points : 5)
XML
HTML
PDF
XPDF
20. (TCO 2) Use the_data type for columns that
contain letters and special characters and for
columns containing numbers that will not be used
in calculations. (Points : 5)
CHAR
VARCHAR
Text
String
21. (TCO 2) Which of the following functions would
you use to extract the from your records in the
database? (Points : 5)
Datepart
Datediff
Dateout
Dateyear
22. (TCO 2) Which of the following functions would
return the current date based on the computer
clock. (Points : 5)
TodayDate()
PutDate()
FindDate()
GetDate()
23. (TCO 3) Aggregate functions ignore
the
_values. (Points : 5)
character
numeric
date
null
24. (TCO 5) For the report server to use
an
extension, it must be_. (Points : 5)
configured
linked to the server
added to the report
installed
25. (TCO 5) The easiest and fastest way to create
a report is to use the_tool. (Points : 5)
report builder
report wizard
report template
report manager
26. (TCO 5) When creating the a report using
Business Intelligence Development Studio, you
can view the report using the_tab. (Points : 5)
Toolbox
Design
Output box
Preview
27. (TCO 5) The data set contains all of
the following except_. (Points : 5)
reuslts of the query
SQL statement
pointer to the data source
name of data source
28. (TCO 7) The chart_contains the plotting
area of a chart. (Points : 5)
category
data
series
areas
29. (TCO 7)_presents a grid layout with static
columns and expands detail data data row by
row.
(Points : 5)
Table
Matrix
List
Dropdown
30. (TCO 6)_regions are items that must be
associated with a data set. (Points : 5)
Processor
Report
Presentation
Data
31. (TCO 6) Which of the data source credential
options is the least recommended because of
security risks. (Points : 5)
Hard-code
Prompt
Windows Authentication No Credentials
32. (TCO 6) Which of the following is not a type of
data source in SSRS. (Points : 5)
embedded
shared
calculated
expression
33. (TCO 3) Which of the following functions
would you use in an SQL statement to tally the
number of
values. (Points : 5)
Max()
Avg()
Sum()
Count()
34. (TCO 3)_functions are SQL mathematical
summaries. (Points : 5)
Summation
Summary
Aggregate
Cummalative
35. (TCO 5) When using the report server project
wizard the most crucial step is_. (Points : 5)
selecting your data source naming your
project
selecting the location to save your project
selecting the correct template
36. (TCO 2) Refer to the tblCustomer table below.
As a data analyst, you have been requested to
select rows that meet the following requirements:
For each city, list the city name in all upper case
characters along with the exchange part of the
customer phone number (the first 3 digits).
Include only preferred customers in the list. Order
the rows in alphabetical order of city. Be sure to
give the calculated columns an alias.
tblCustomer:
CustID (PK)
LastNameFirstNamePhoneCityRegionOverdue
Status*PreferredIncomeNumOrdersBalanceBir
thd
ate10
SmithBob123-4567OrlandoNorth
Paid
Y1000051001/1/1978
12RamirezJose422-
1234ApexSouthPaidY50000166002/8/1970
13WashingtonTerrell951-
1234SujourEast[null]Y20000257003/5/1985
15JonesBill963-
7894AxeCrossingWestUnpaidY16900250012/1/
1
990
17MoralesSandy951-
1234OrlandoNorthPaidN85000904008/3/1986
21PrincipeMichelle963-
4561ApexSouthPaidN94000853007/2/1974
23MavisJohn147-
4561SujourEastUnpaidY25000266003/5/1989
^Overdue Status indicates customers with a
balance that is 30 or more days overdue
Part 1: Write the complete SQL statement
needed to return the rows that meet these
requirements.
Part 2: What rows will be returned from this
query? List the customer ID only of the rows to
be
returned.
Part 3: What function did you use to extract the
three-digit exchange? Why did you select this
function? Rewrite the SQL using a different
function to extract these characters. (Points :
25)
37. (TCO 3) Refer to the tblCustomer table below.
As a data analyst, you have been requested to
select rows that meet the following
requirements.
For each city, list the name of the city, and the
number of customers in that city. Include only
those cities that have more than 1 customer in
them. Order the data by city in descending
order.
tblCustomer:
CustID (PK)
LastNameFirstNamePhoneCityRegionOverdue
Status*PreferredIncomeNumOrdersBalanceBirt
hd
ate
10
SmithBob123-4567OrlandoNorth
Paid
Y1000051001/1/1978
12RamirezJose422-
1234ApexSouthPaidY50000166002/8/197
0
13WashingtonTerrell951
-1234SujourEast[null]Y20000257003/5/1985
15JonesBill963-
7894AxeCrossingWestUnpaidY16900250012/1/
1
990
17MoralesSandy951-
1234OrlandoNorthPaidN85000904008/3/1986
21PrincipeMichelle963-
4561ApexSouthPaidN94000853007/2/1974
23MavisJohn147-
4561SujourEastUnpaidY25000266003/5/1989
*Overdue Status indicates customers with a
balance that is 30 or more days overdue
Part 1: Build your SELECT statement by choosing
the certain clauses from the list below and putting
the clauses in the correct order:
SELECT City, Count(*)
ORDER BY 2
WHERE Count(*) > 1
SELECT Region,
Count(*) GROUP BY City
FROM tblCustomer
ORDER BY Count(*)
HAVING Count(*) > 1
GROUP BY Region
ORDER BY 2 DESC
Part 2: Did you select any filter clause(s)?
(WHERE, HAVING) Justify your choice of filter(s).
(Points :
25)
38. (TCO 6) Evaluate the Supplier List report
below. Management requested this report so they
can monitor the value and quantity of the stock
on hand; a requirement of the report is to be able
to match the product to the supplier.
Part 1: Describe at least two enhancements that
would make this report more readable to the
user.
Part 2: Describe at least two features you would
include that would add functionality to the report
and improve its flexibility for the user. (Points :
25)

More Related Content

What's hot

Using either foldLeft or foldRight to concatenate the elements of list[T] usi...
Using either foldLeft or foldRight to concatenate the elements of list[T] usi...Using either foldLeft or foldRight to concatenate the elements of list[T] usi...
Using either foldLeft or foldRight to concatenate the elements of list[T] usi...Philip Schwarz
 
Choosing gates, Schematic Diagrams and Logic Gates Code
Choosing gates, Schematic Diagrams and Logic Gates CodeChoosing gates, Schematic Diagrams and Logic Gates Code
Choosing gates, Schematic Diagrams and Logic Gates Codeinventionjournals
 
284566820 1 z0-061(1)
284566820 1 z0-061(1)284566820 1 z0-061(1)
284566820 1 z0-061(1)panagara
 
Ecs40 winter 2017 homework 3
Ecs40 winter 2017 homework 3Ecs40 winter 2017 homework 3
Ecs40 winter 2017 homework 3JenniferBall44
 
Advanced Microsoft Excel
Advanced Microsoft ExcelAdvanced Microsoft Excel
Advanced Microsoft ExcelEric Metelka
 
Introduction_modern_fortran_short
Introduction_modern_fortran_shortIntroduction_modern_fortran_short
Introduction_modern_fortran_shortNils van Velzen
 
Programming for Problem Solving Unit 2
Programming for Problem Solving Unit 2Programming for Problem Solving Unit 2
Programming for Problem Solving Unit 2Dhiviya Rose
 
Managing input and output operations in c
Managing input and output operations in cManaging input and output operations in c
Managing input and output operations in cniyamathShariff
 
COMPILER DESIGN AND CONSTRUCTION
COMPILER DESIGN AND CONSTRUCTIONCOMPILER DESIGN AND CONSTRUCTION
COMPILER DESIGN AND CONSTRUCTIONAnil Pokhrel
 
MATH 302 Statistics Quiz 2
MATH 302 Statistics Quiz 2MATH 302 Statistics Quiz 2
MATH 302 Statistics Quiz 2AmeliaJecksons
 
Lecture 2 coding_principles
Lecture 2 coding_principlesLecture 2 coding_principles
Lecture 2 coding_principlesmoduledesign
 

What's hot (17)

Using either foldLeft or foldRight to concatenate the elements of list[T] usi...
Using either foldLeft or foldRight to concatenate the elements of list[T] usi...Using either foldLeft or foldRight to concatenate the elements of list[T] usi...
Using either foldLeft or foldRight to concatenate the elements of list[T] usi...
 
Choosing gates, Schematic Diagrams and Logic Gates Code
Choosing gates, Schematic Diagrams and Logic Gates CodeChoosing gates, Schematic Diagrams and Logic Gates Code
Choosing gates, Schematic Diagrams and Logic Gates Code
 
284566820 1 z0-061(1)
284566820 1 z0-061(1)284566820 1 z0-061(1)
284566820 1 z0-061(1)
 
Fundamentals of Programming Chapter 3
Fundamentals of Programming Chapter 3Fundamentals of Programming Chapter 3
Fundamentals of Programming Chapter 3
 
Excel tutorial
Excel tutorialExcel tutorial
Excel tutorial
 
Ecs40 winter 2017 homework 3
Ecs40 winter 2017 homework 3Ecs40 winter 2017 homework 3
Ecs40 winter 2017 homework 3
 
Advanced Microsoft Excel
Advanced Microsoft ExcelAdvanced Microsoft Excel
Advanced Microsoft Excel
 
WPM199204_Barcodes
WPM199204_BarcodesWPM199204_Barcodes
WPM199204_Barcodes
 
Introduction_modern_fortran_short
Introduction_modern_fortran_shortIntroduction_modern_fortran_short
Introduction_modern_fortran_short
 
Programming for Problem Solving Unit 2
Programming for Problem Solving Unit 2Programming for Problem Solving Unit 2
Programming for Problem Solving Unit 2
 
Managing input and output operations in c
Managing input and output operations in cManaging input and output operations in c
Managing input and output operations in c
 
COMPILER DESIGN AND CONSTRUCTION
COMPILER DESIGN AND CONSTRUCTIONCOMPILER DESIGN AND CONSTRUCTION
COMPILER DESIGN AND CONSTRUCTION
 
Joins
JoinsJoins
Joins
 
MATH 302 Statistics Quiz 2
MATH 302 Statistics Quiz 2MATH 302 Statistics Quiz 2
MATH 302 Statistics Quiz 2
 
Formula
FormulaFormula
Formula
 
Lecture 2 coding_principles
Lecture 2 coding_principlesLecture 2 coding_principles
Lecture 2 coding_principles
 
5 format
5 format5 format
5 format
 

Similar to Bis 345-final-exam-guide-set-1-new

Bis 345-final-exam-guide-set-2-new
Bis 345-final-exam-guide-set-2-newBis 345-final-exam-guide-set-2-new
Bis 345-final-exam-guide-set-2-newassignmentcloud85
 
Cis 336 final exam 2
Cis 336 final exam 2Cis 336 final exam 2
Cis 336 final exam 2lifesgood12
 
Cis 336 final exam 2
Cis 336 final exam 2Cis 336 final exam 2
Cis 336 final exam 2prasaaanna2
 
CIS 336 Final Exam 2 (Devry)
CIS 336 Final Exam 2 (Devry) CIS 336 Final Exam 2 (Devry)
CIS 336 Final Exam 2 (Devry) critter03
 
CIS 336 Final Exam 2 (Devry)p
CIS 336 Final Exam 2 (Devry)pCIS 336 Final Exam 2 (Devry)p
CIS 336 Final Exam 2 (Devry)pcritterc07
 
CIS 336 Final Exam 2 (Devry)s
CIS 336 Final Exam 2 (Devry)sCIS 336 Final Exam 2 (Devry)s
CIS 336 Final Exam 2 (Devry)scritterc07
 
CIS 115 Education Specialist / snaptutorial.com
CIS 115  Education Specialist / snaptutorial.comCIS 115  Education Specialist / snaptutorial.com
CIS 115 Education Specialist / snaptutorial.comMcdonaldRyan138
 
Devry cis 115 final exam 1
Devry cis 115 final exam 1Devry cis 115 final exam 1
Devry cis 115 final exam 1eyavagal
 
Devry cis 115 final exam 1
Devry cis 115 final exam 1Devry cis 115 final exam 1
Devry cis 115 final exam 1eyavagal
 
Devry cis 115 final exam 1
Devry cis 115 final exam 1Devry cis 115 final exam 1
Devry cis 115 final exam 1shamek1236
 
Cis 115 Education Organization / snaptutorial.com
Cis 115 Education Organization / snaptutorial.comCis 115 Education Organization / snaptutorial.com
Cis 115 Education Organization / snaptutorial.comBaileya126
 
CIS 115 Exceptional Education - snaptutorial.com
CIS 115   Exceptional Education - snaptutorial.comCIS 115   Exceptional Education - snaptutorial.com
CIS 115 Exceptional Education - snaptutorial.comDavisMurphyB33
 
Cis 115 Education Organization -- snaptutorial.com
Cis 115   Education Organization -- snaptutorial.comCis 115   Education Organization -- snaptutorial.com
Cis 115 Education Organization -- snaptutorial.comDavisMurphyB99
 
Cis 115 Effective Communication / snaptutorial.com
Cis 115  Effective Communication / snaptutorial.comCis 115  Effective Communication / snaptutorial.com
Cis 115 Effective Communication / snaptutorial.comBaileyao
 
Cis 115 Enhance teaching / snaptutorial.com
Cis 115  Enhance teaching / snaptutorial.comCis 115  Enhance teaching / snaptutorial.com
Cis 115 Enhance teaching / snaptutorial.comHarrisGeorg51
 
CIS 115 Effective Communication - tutorialrank.com
CIS 115  Effective Communication - tutorialrank.comCIS 115  Effective Communication - tutorialrank.com
CIS 115 Effective Communication - tutorialrank.comBartholomew18
 
CIS 115 Become Exceptional--cis115.com
CIS 115 Become Exceptional--cis115.comCIS 115 Become Exceptional--cis115.com
CIS 115 Become Exceptional--cis115.comclaric130
 
CIS 336 Become Exceptional--cis336.com
CIS 336 Become Exceptional--cis336.comCIS 336 Become Exceptional--cis336.com
CIS 336 Become Exceptional--cis336.comclaric131
 
CIS 336 Education Begins--cis336.com
CIS 336 Education Begins--cis336.comCIS 336 Education Begins--cis336.com
CIS 336 Education Begins--cis336.comclaric231
 
Cis 115 Extraordinary Success/newtonhelp.com
Cis 115 Extraordinary Success/newtonhelp.com  Cis 115 Extraordinary Success/newtonhelp.com
Cis 115 Extraordinary Success/newtonhelp.com amaranthbeg143
 

Similar to Bis 345-final-exam-guide-set-1-new (20)

Bis 345-final-exam-guide-set-2-new
Bis 345-final-exam-guide-set-2-newBis 345-final-exam-guide-set-2-new
Bis 345-final-exam-guide-set-2-new
 
Cis 336 final exam 2
Cis 336 final exam 2Cis 336 final exam 2
Cis 336 final exam 2
 
Cis 336 final exam 2
Cis 336 final exam 2Cis 336 final exam 2
Cis 336 final exam 2
 
CIS 336 Final Exam 2 (Devry)
CIS 336 Final Exam 2 (Devry) CIS 336 Final Exam 2 (Devry)
CIS 336 Final Exam 2 (Devry)
 
CIS 336 Final Exam 2 (Devry)p
CIS 336 Final Exam 2 (Devry)pCIS 336 Final Exam 2 (Devry)p
CIS 336 Final Exam 2 (Devry)p
 
CIS 336 Final Exam 2 (Devry)s
CIS 336 Final Exam 2 (Devry)sCIS 336 Final Exam 2 (Devry)s
CIS 336 Final Exam 2 (Devry)s
 
CIS 115 Education Specialist / snaptutorial.com
CIS 115  Education Specialist / snaptutorial.comCIS 115  Education Specialist / snaptutorial.com
CIS 115 Education Specialist / snaptutorial.com
 
Devry cis 115 final exam 1
Devry cis 115 final exam 1Devry cis 115 final exam 1
Devry cis 115 final exam 1
 
Devry cis 115 final exam 1
Devry cis 115 final exam 1Devry cis 115 final exam 1
Devry cis 115 final exam 1
 
Devry cis 115 final exam 1
Devry cis 115 final exam 1Devry cis 115 final exam 1
Devry cis 115 final exam 1
 
Cis 115 Education Organization / snaptutorial.com
Cis 115 Education Organization / snaptutorial.comCis 115 Education Organization / snaptutorial.com
Cis 115 Education Organization / snaptutorial.com
 
CIS 115 Exceptional Education - snaptutorial.com
CIS 115   Exceptional Education - snaptutorial.comCIS 115   Exceptional Education - snaptutorial.com
CIS 115 Exceptional Education - snaptutorial.com
 
Cis 115 Education Organization -- snaptutorial.com
Cis 115   Education Organization -- snaptutorial.comCis 115   Education Organization -- snaptutorial.com
Cis 115 Education Organization -- snaptutorial.com
 
Cis 115 Effective Communication / snaptutorial.com
Cis 115  Effective Communication / snaptutorial.comCis 115  Effective Communication / snaptutorial.com
Cis 115 Effective Communication / snaptutorial.com
 
Cis 115 Enhance teaching / snaptutorial.com
Cis 115  Enhance teaching / snaptutorial.comCis 115  Enhance teaching / snaptutorial.com
Cis 115 Enhance teaching / snaptutorial.com
 
CIS 115 Effective Communication - tutorialrank.com
CIS 115  Effective Communication - tutorialrank.comCIS 115  Effective Communication - tutorialrank.com
CIS 115 Effective Communication - tutorialrank.com
 
CIS 115 Become Exceptional--cis115.com
CIS 115 Become Exceptional--cis115.comCIS 115 Become Exceptional--cis115.com
CIS 115 Become Exceptional--cis115.com
 
CIS 336 Become Exceptional--cis336.com
CIS 336 Become Exceptional--cis336.comCIS 336 Become Exceptional--cis336.com
CIS 336 Become Exceptional--cis336.com
 
CIS 336 Education Begins--cis336.com
CIS 336 Education Begins--cis336.comCIS 336 Education Begins--cis336.com
CIS 336 Education Begins--cis336.com
 
Cis 115 Extraordinary Success/newtonhelp.com
Cis 115 Extraordinary Success/newtonhelp.com  Cis 115 Extraordinary Success/newtonhelp.com
Cis 115 Extraordinary Success/newtonhelp.com
 

More from assignmentcloud85

Bus 640 week 3 production cost analysis and estimation applied problems
Bus 640 week 3 production cost analysis and estimation applied problemsBus 640 week 3 production cost analysis and estimation applied problems
Bus 640 week 3 production cost analysis and estimation applied problemsassignmentcloud85
 
Bus 640 week 3 dq 1 relevant costs
Bus 640 week 3 dq 1 relevant costsBus 640 week 3 dq 1 relevant costs
Bus 640 week 3 dq 1 relevant costsassignmentcloud85
 
Bus 640 week 1 economics of risk and uncertainty applied problems
Bus 640 week 1 economics of risk and uncertainty applied problemsBus 640 week 1 economics of risk and uncertainty applied problems
Bus 640 week 1 economics of risk and uncertainty applied problemsassignmentcloud85
 
Ash bus-640-week-2-consumer-demand-analysis-and-estimation-applied-problems
Ash bus-640-week-2-consumer-demand-analysis-and-estimation-applied-problemsAsh bus-640-week-2-consumer-demand-analysis-and-estimation-applied-problems
Ash bus-640-week-2-consumer-demand-analysis-and-estimation-applied-problemsassignmentcloud85
 

More from assignmentcloud85 (12)

Bus 640 week 3 production cost analysis and estimation applied problems
Bus 640 week 3 production cost analysis and estimation applied problemsBus 640 week 3 production cost analysis and estimation applied problems
Bus 640 week 3 production cost analysis and estimation applied problems
 
Bus 640 week 3 dq 1 relevant costs
Bus 640 week 3 dq 1 relevant costsBus 640 week 3 dq 1 relevant costs
Bus 640 week 3 dq 1 relevant costs
 
Bus 640 week 1 economics of risk and uncertainty applied problems
Bus 640 week 1 economics of risk and uncertainty applied problemsBus 640 week 1 economics of risk and uncertainty applied problems
Bus 640 week 1 economics of risk and uncertainty applied problems
 
Ash bus-640-week-2-consumer-demand-analysis-and-estimation-applied-problems
Ash bus-640-week-2-consumer-demand-analysis-and-estimation-applied-problemsAsh bus-640-week-2-consumer-demand-analysis-and-estimation-applied-problems
Ash bus-640-week-2-consumer-demand-analysis-and-estimation-applied-problems
 
Bis 345-week-7-i lab-new
Bis 345-week-7-i lab-newBis 345-week-7-i lab-new
Bis 345-week-7-i lab-new
 
Bis 345-week-6-i lab-new
Bis 345-week-6-i lab-newBis 345-week-6-i lab-new
Bis 345-week-6-i lab-new
 
Bis 345-week-5-i lab-new
Bis 345-week-5-i lab-newBis 345-week-5-i lab-new
Bis 345-week-5-i lab-new
 
Bis 345-week-3-i lab-new
Bis 345-week-3-i lab-newBis 345-week-3-i lab-new
Bis 345-week-3-i lab-new
 
Bis 345-week-4-i lab-new
Bis 345-week-4-i lab-newBis 345-week-4-i lab-new
Bis 345-week-4-i lab-new
 
Bis 345-week-2-i lab-new
Bis 345-week-2-i lab-newBis 345-week-2-i lab-new
Bis 345-week-2-i lab-new
 
Bis 345-week-1-i lab-new
Bis 345-week-1-i lab-newBis 345-week-1-i lab-new
Bis 345-week-1-i lab-new
 
Bis 345-quiz-1-new
Bis 345-quiz-1-newBis 345-quiz-1-new
Bis 345-quiz-1-new
 

Recently uploaded

“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,Virag Sontakke
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Recently uploaded (20)

“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 

Bis 345-final-exam-guide-set-1-new

  • 1. BIS 345 Final Exam Guide Set 1 NEW Check this A+ tutorial guideline at http://www.assignmentcloud.com/bis- 345/bis-345-final-exam-guide-set-1-new For more classes visit http://www.assignmentcloud.com BIS 345 Final Exam Guide Set 1 NEW 1. (TCO 1) Which of the following sets of SQL clauses represent the minimum combination of clauses to make a working SQL statement? (Points : 5) SELECT, WHERE FROM, WHERE SELECT, FROM FROM, ORDER BY
  • 2. 2. (TCO 1) Which of the following would be considered a logical operator? (Points : 5) >= AND IS NULL 3. (TCO 1) Which of the following is true about ORDER BY clauses? (Points : 5) The default order is ascending when none is specified. Numerical columns are sorted from highest to lowest where no sort order is specified. Columns on which sorting must be conducted cannot be identified by their position in their table. Character columns are evaluated from right to left.
  • 3. 4. (TCO 1) Which of the following would extract all rows containing the numbers 4 or 8? (Points : 5) WHERE number = 4 or number = 8 WHERE number BETWEEN 4 and 8 WHERE number = '4 or 8' Where number = '4' or '8' 5. (TCO 1) Assume you want to associate a TaxpayerTable with a PrincipalResidenceTable. The PrincipalResidentTable contains the address where each taxpayer lives. Assume that each taxpayer can have only one residence; however, more than one person at the address can be considered a taxpayer. What is the relationship between the TaxpayerTable and PrincipalResidenceTable? (Points : 5) Many-To-One One-To-Many Many-to-Many One-to-One
  • 4. 6. (TCO 1) Which of the following would display values from the city field in the Professor table, removing all duplicate city names? (Points : 5) SELECT City DISTINCT FROM Professor SELECT City FROM DISTINCT Professor SELECT DISTINCT City FROM Professor SELECT DISTINCT FROM Professor 7. (TCO 1) Assume you have a table called StudentTable. You would like to extract the lastname of all students who have not yet declared their major. Which of the following WHERE clauses would accomplish this? (Points : 5) WHERE major = " " WHERE major = ' ' WHERE major IS NULL WHERE major = 'NULL'
  • 5. 8. (TCO 3) Which of the following statements would count the number of customers within each state? Assume you have a table with the following columns: (Points : 5) SELECT State, Count(*) FROM CustomerTable GROUP BY State; SELECT CustomerID, Count(State) FROM CustomerTable GROUP BY CustomerID; SELECT State, Count(CustomerID) FROM CustomerTable; None of the above. 9. (TCO 3) Which of the following statements would the extract average income of the customers
  • 6. in each city? Assume you have a table with the following columns: (Points : 5) SELECT City, Avg(Income) FROM CustomerTable GROUP BY City; SELECT State, Avg(Income) FROM CustomerTable GROUP BY State; SELECT City, Average(Income) FROM CustomerTable GROUP BY City; SELECT State, Average(Income) FROM CustomerTable GROUP BY State;
  • 7. 10. (TCO 4) Query_is the complete process from submission of a query to its actual execution. (Points : 5) optimization compilation insertion None of the above 11. (TCO 4) Assume you have two queries that must extract all rows that have a value of greater than $100 in an Income column. You are considering two ways of writing your WHERE clause. The first option is to extract all columns that are NOT less than or equal to $100. The second option is to extract all columns that are greater than $100. Which option should you choose to ensure your query runs as quickly as possible? (Points : 5) The first option The second option
  • 8. It doesn't matter which option you pick; they will run the same no matter what. All of the above 12. (TCO 7) Which of the file formats can be viewed using Adobe Acrobat Reader? (Points : 5) CSV PDF TIFF XLSX 13. (TCO 8) Name the security concept involves ensuring that one person doesn't have control over too many steps in a process. (Points : 5) zroles Separation of duties Securing forms and reports Using views
  • 9. 14. (TCO 8)_encryption offers a more granular level of encryption. (Points : 5) Role based Object-based security Column-level None of the above 15. (TCO 9) Which of the following reports requires the reader to read down columns to understand its meaning? (Points : 5) Matrix Exception Tabular None of the above 16. (TCO 9) Assume you are creating a report which is sorted by class, and then by student
  • 10. within class. The class is considered the column: (Points : 5) gross minor major None of the above 17. (TCO 9) Aggregation functions help grouping scenarios by providing_for groups. (Points : 5) totals subtotals titles expressions 18. (TCO 10) Which of the following represent a popular report-writing tool that is not a Microsoft application? (Points : 5) Access Reports
  • 11. SSRS SSMS Crystal Reports 19. (TCO 10) Which of the following is NOT one of the formats available for reports? (Points : 5) XML HTML PDF XPDF 20. (TCO 2) Use the_data type for columns that contain letters and special characters and for columns containing numbers that will not be used in calculations. (Points : 5) CHAR VARCHAR Text
  • 12. String 21. (TCO 2) Which of the following functions would you use to extract the from your records in the database? (Points : 5) Datepart Datediff Dateout Dateyear 22. (TCO 2) Which of the following functions would return the current date based on the computer clock. (Points : 5) TodayDate() PutDate() FindDate() GetDate()
  • 13. 23. (TCO 3) Aggregate functions ignore the _values. (Points : 5) character numeric date null 24. (TCO 5) For the report server to use an extension, it must be_. (Points : 5) configured linked to the server added to the report installed 25. (TCO 5) The easiest and fastest way to create a report is to use the_tool. (Points : 5) report builder report wizard
  • 14. report template report manager 26. (TCO 5) When creating the a report using Business Intelligence Development Studio, you can view the report using the_tab. (Points : 5) Toolbox Design Output box Preview 27. (TCO 5) The data set contains all of the following except_. (Points : 5) reuslts of the query SQL statement pointer to the data source name of data source
  • 15. 28. (TCO 7) The chart_contains the plotting area of a chart. (Points : 5) category data series areas 29. (TCO 7)_presents a grid layout with static columns and expands detail data data row by row. (Points : 5) Table Matrix List Dropdown 30. (TCO 6)_regions are items that must be associated with a data set. (Points : 5) Processor
  • 16. Report Presentation Data 31. (TCO 6) Which of the data source credential options is the least recommended because of security risks. (Points : 5) Hard-code Prompt Windows Authentication No Credentials 32. (TCO 6) Which of the following is not a type of data source in SSRS. (Points : 5) embedded shared calculated expression
  • 17. 33. (TCO 3) Which of the following functions would you use in an SQL statement to tally the number of values. (Points : 5) Max() Avg() Sum() Count() 34. (TCO 3)_functions are SQL mathematical summaries. (Points : 5) Summation Summary Aggregate Cummalative 35. (TCO 5) When using the report server project wizard the most crucial step is_. (Points : 5)
  • 18. selecting your data source naming your project selecting the location to save your project selecting the correct template 36. (TCO 2) Refer to the tblCustomer table below. As a data analyst, you have been requested to select rows that meet the following requirements: For each city, list the city name in all upper case characters along with the exchange part of the customer phone number (the first 3 digits). Include only preferred customers in the list. Order the rows in alphabetical order of city. Be sure to give the calculated columns an alias. tblCustomer: CustID (PK)
  • 20. 23MavisJohn147- 4561SujourEastUnpaidY25000266003/5/1989 ^Overdue Status indicates customers with a balance that is 30 or more days overdue Part 1: Write the complete SQL statement needed to return the rows that meet these requirements. Part 2: What rows will be returned from this query? List the customer ID only of the rows to be returned. Part 3: What function did you use to extract the three-digit exchange? Why did you select this function? Rewrite the SQL using a different function to extract these characters. (Points : 25) 37. (TCO 3) Refer to the tblCustomer table below. As a data analyst, you have been requested to select rows that meet the following requirements.
  • 21. For each city, list the name of the city, and the number of customers in that city. Include only those cities that have more than 1 customer in them. Order the data by city in descending order. tblCustomer: CustID (PK) LastNameFirstNamePhoneCityRegionOverdue Status*PreferredIncomeNumOrdersBalanceBirt hd ate 10 SmithBob123-4567OrlandoNorth Paid Y1000051001/1/1978 12RamirezJose422- 1234ApexSouthPaidY50000166002/8/197 0
  • 22. 13WashingtonTerrell951 -1234SujourEast[null]Y20000257003/5/1985 15JonesBill963- 7894AxeCrossingWestUnpaidY16900250012/1/ 1 990 17MoralesSandy951- 1234OrlandoNorthPaidN85000904008/3/1986 21PrincipeMichelle963- 4561ApexSouthPaidN94000853007/2/1974 23MavisJohn147- 4561SujourEastUnpaidY25000266003/5/1989 *Overdue Status indicates customers with a balance that is 30 or more days overdue Part 1: Build your SELECT statement by choosing the certain clauses from the list below and putting the clauses in the correct order: SELECT City, Count(*) ORDER BY 2 WHERE Count(*) > 1
  • 23. SELECT Region, Count(*) GROUP BY City FROM tblCustomer ORDER BY Count(*) HAVING Count(*) > 1 GROUP BY Region ORDER BY 2 DESC Part 2: Did you select any filter clause(s)? (WHERE, HAVING) Justify your choice of filter(s). (Points : 25) 38. (TCO 6) Evaluate the Supplier List report below. Management requested this report so they can monitor the value and quantity of the stock on hand; a requirement of the report is to be able to match the product to the supplier.
  • 24. Part 1: Describe at least two enhancements that would make this report more readable to the user. Part 2: Describe at least two features you would include that would add functionality to the report and improve its flexibility for the user. (Points : 25)