SlideShare a Scribd company logo
1 of 21
BIS 345 Final Exam Guide Set 2 NEW
Check this A+ tutorial guideline at
http://www.assignmentcloud.com/bis-
345/bis-345-final-exam-guide-set-2-new
For more classes visit
http://www.assignmentcloud.com
BIS 345 Final Exam Guide Set 2 NEW
1. (TCO 1) Which of the following portions of an
SQL Statement indicate the columns that should
be included in the result set?(Points : 5)
SELECT
FROM
WHERE
INSERT
Question 2.2. (TCO 1) Which of the following
operators uses wildcard characters to search for
patterns or characters in a character
string?(Points : 5)
SEARCH
LIKE
BETWEEN EQUAL TO
Question 3.3. (TCO 1) Which of the following
characters is used to merge the output of
two columns into one? (Points : 5)
AND
PLUS
+
Question 4.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'
Question 5.5. (TCO 1) Assume you have a table
called CourseTable. You would like to extract all
courses that were developed in June and July of
2008. Which of the following operators would be
of most use to you in your WHERE clause?
(Points :
5)
BETWEEN LIKE IS NULL
None of the above
Question 6.6. (TCO 1) Given Professors table
with LastName, FirstName, and MI fields, which
of the following would select all fields from the
table?
(Points : 5)
SELECT * FROM Professors;
SELECT * Professors;
SELECT Last Name, First Name, MI
FROM
Professors;
SELECT * ALL
Question 7.7. (TCO 1) Which of the following would
extract all rows containing the numbers 10 or 20?
(Points : 5)
WHERE number BETWEEN 10 and 20 WHERE
number = 10 or number = 20 WHERE number = '10
or 20'
Where number = '10' or '20'
Question 8.8. (TCO 3) Which of the following
statements would extract the average price of all
the products?
Assume you have a table with the following
columns:
(Points : 5)
SELECT ProductID, Avg(UnitPrice)
FROM ProductTable GROUP BYProductID;
SELECT Average(UnitPrice)
FROM ProductTable;
SELECT Avg(UnitPrice)
FROM ProductTable;
None of the above
Question 9.9. (TCO 3) Which of the following
statements would the extract the total value of all
the orders?
Assume you have a table with the following
columns:
(Points : 5)
SELECT Total(OrderTotal)
FROM OrderTable;
SELECT Sum(OrderTotal)
FROM OrderTable; SELECT
Sum(OrderTotal) FROM
OrderTable GROUP BY
OrderTotal; SELECT
Rollup(OrderTotal) FROM
OrderTable;
Question 10.10. (TCO 4) Assume you have two
queries. The first query selects its data using a join
involving five tables. The second query selects its
data using a join involving three tables. Which of
the queries would run faster, all other things being
equal? (Points : 5)
The first query will run slower than the second
query.
The second query will run slower than the
second query.
The queries will run at the same speed.
All of the above
Question 11.11. (TCO 4) Assume you have two
select queries that must join two tables. The first
query uses the INNER JOIN keyword, while the
other accomplishes the join using the WHERE
clause. Which query will be more likely to run
faster - the first query or the second query?
(Points
: 5)
The first query will run slower than the second
query.
The second query will run slower than the first
query.
The queries will run at the same speed.
All of the above
Question 12.12. (TCO 7) Which of the following file
formats are used to import data into SSRS.
(Points :
5)
CSV
PDF
SLN
docx
Question 13.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
Question 14.14. (TCO 8)_is the process of
creating ciphertext. (Points : 5)
Passcoding
Digital Certificate
Symmetric
Encryption
Question 15.15. (TCO 9) Which of the following
reports requires the reader to look at data in
both column and row format? (Points : 5)
Matrix
Exception
Tabular
None of the above
Question 16.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
Question 17.17. (TCO 9) Which date function
will return the difference between two dates in
the specified units? (Points : 5)
DATEDIFFERENCE
DATEPART
DATEDIFF
DATEADD
Question 18.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
Question 19.19. (TCO 10) Which of the following
is NOT one of the formats available for reports?
(Points : 5)
XML
HTML
PDF
XPDF
Question 20.20. (TCO 2) Which date function
will return the difference between two dates in
the specified units? (Points : 5)
DATEDIFFERENCE
DATEPART
DATEDIFF
DATEADD
Question 21.21. (TCO 2) Which of the following
functions would you use to extract the year,
month, or day records in the database? (Points :
5)
Datepart
Datediff
Dateout
Dateyear
Question 22.22. (TCO 2) Which of the following
functions would you use to extract characters from
the middle of a string. (Points : 5)
Left()
Right()
Middle()
Substring()
Question 23.23. (TCO 3) Which of the following
aggregate functions can be used with any data
type. (Points : 5)
MAX
SUM
COUNT
AVG
Question 24.24. (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
Question 25.25. (TCO 5) SSRS uses all of the
following types of extensions except_. (Points :
5)
data processing security delivery communication
Question 26.26. (TCO 5) By default when we add a
table to our report in Business Intelligence
Development Studio, the table has_columns.
(Points : 5)
2
3
4
5
Question 27.27. (TCO 5) You can use the_in
Business Intelligence Development Studio to
access the report items controls. (Points : 5)
Design tab
Toolbox
Toolbar
Preview tab
Question 28.28. (TCO 7) The chart control used
in
SSRS is licensed from_software. (Points : 5)
Dundas
Adobe
Apple
Google
Question 29.29. (TCO 7)_presents group data
in a grid layout that's capable of expanding both
rows and columns. (Points : 5)
Table
Matrix
List
Dropdown
Question 30.30. (TCO 6) A_parameter are used
during the processing of the query. (Points : 5)
Multidimensional Expressions (MDX)
query
report
Multivalue
parameters
Question 31.31. (TCO 6) Which data source
credentials option is considered an
integrated security type. (Points : 5)
Prompt for credentials
Windows authentication
Hard-code credentials
No credentials
Question 32.32. (TCO 6)_data source is used
to dynamically choose the data source at runtime.
(Points : 5)
embedded
shared
unique
expression
Question 33.33. (TCO 3) Which of the following
aggregate functions would not ignore null values.
(Points : 5)
Count
AVG
MAX
Sum
Question 34.34. (TCO 3) Which of the following
is not a valid aggregate function. (Points : 5)
DATEDIFFERENCE
COUNT
MAX
MIN
Question 35.35. (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
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
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)
Part 3: To extract the three-digit exchange I used
the LEFT(Phone,3) funcion.
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:
Part 1:
SELECT City, COUNT(*) FROM tblCustomer GROUP
BY City HAVING COUNT(*)>1 ORDER BY City 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 1: The two enhancements I would make
would be:
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)
Part 2: If I had to include two features to add
functionality to the report and improve its
flexibility they would be:

More Related Content

What's hot

FP304 DATABASE SYSTEM PAPER FINAL EXAM AGAIN
FP304 DATABASE SYSTEM  PAPER FINAL EXAM AGAINFP304 DATABASE SYSTEM  PAPER FINAL EXAM AGAIN
FP304 DATABASE SYSTEM PAPER FINAL EXAM AGAIN
Syahriha Ruslan
 
Report: Test49 Geant4 Monte-Carlo Models Testing Tools
Report: Test49 Geant4 Monte-Carlo Models Testing ToolsReport: Test49 Geant4 Monte-Carlo Models Testing Tools
Report: Test49 Geant4 Monte-Carlo Models Testing Tools
Roman Atachiants
 

What's hot (19)

17624 2016 winter question paper
17624 2016 winter question paper17624 2016 winter question paper
17624 2016 winter question paper
 
Cplus plus abd datastructure
Cplus plus abd datastructureCplus plus abd datastructure
Cplus plus abd datastructure
 
7th Semester Information Science (2013-June) Question Papers
7th Semester Information Science (2013-June) Question Papers 7th Semester Information Science (2013-June) Question Papers
7th Semester Information Science (2013-June) Question Papers
 
7th semester Computer Science and Information Science Engg (2013 December) Qu...
7th semester Computer Science and Information Science Engg (2013 December) Qu...7th semester Computer Science and Information Science Engg (2013 December) Qu...
7th semester Computer Science and Information Science Engg (2013 December) Qu...
 
B.Sc.IT: Semester – V (April – 2015) [Revised Course | Question Paper]
B.Sc.IT: Semester – V (April – 2015) [Revised Course | Question Paper]B.Sc.IT: Semester – V (April – 2015) [Revised Course | Question Paper]
B.Sc.IT: Semester – V (April – 2015) [Revised Course | Question Paper]
 
Oop december 2018
Oop december 2018Oop december 2018
Oop december 2018
 
Intake 38 data access 3
Intake 38 data access 3Intake 38 data access 3
Intake 38 data access 3
 
FP304 DATABASE SYSTEM FINAL PAPER
FP304    DATABASE SYSTEM FINAL PAPERFP304    DATABASE SYSTEM FINAL PAPER
FP304 DATABASE SYSTEM FINAL PAPER
 
7th cs june 2013
7th cs   june 20137th cs   june 2013
7th cs june 2013
 
Algorithms Lecture 4: Sorting Algorithms I
Algorithms Lecture 4: Sorting Algorithms IAlgorithms Lecture 4: Sorting Algorithms I
Algorithms Lecture 4: Sorting Algorithms I
 
Lesson 4 stacks and queues
Lesson 4  stacks and queuesLesson 4  stacks and queues
Lesson 4 stacks and queues
 
ASP.NET With C# (December – 2017) [Revised Syllabus | Question Paper]
ASP.NET With C# (December – 2017) [Revised Syllabus | Question Paper]ASP.NET With C# (December – 2017) [Revised Syllabus | Question Paper]
ASP.NET With C# (December – 2017) [Revised Syllabus | Question Paper]
 
FP304 DATABASE SYSTEM PAPER FINAL EXAM AGAIN
FP304 DATABASE SYSTEM  PAPER FINAL EXAM AGAINFP304 DATABASE SYSTEM  PAPER FINAL EXAM AGAIN
FP304 DATABASE SYSTEM PAPER FINAL EXAM AGAIN
 
BScIT: Semester – V (May - 2018) [IDOL: Old Course | Question Paper]
BScIT: Semester – V (May - 2018) [IDOL: Old Course | Question Paper]BScIT: Semester – V (May - 2018) [IDOL: Old Course | Question Paper]
BScIT: Semester – V (May - 2018) [IDOL: Old Course | Question Paper]
 
B.Sc.IT: Semester – V (October – 2012) [Revised Course | Question Paper]
B.Sc.IT: Semester – V (October – 2012) [Revised Course | Question Paper]B.Sc.IT: Semester – V (October – 2012) [Revised Course | Question Paper]
B.Sc.IT: Semester – V (October – 2012) [Revised Course | Question Paper]
 
Aloha paper for cdac ccpp
Aloha paper  for  cdac ccppAloha paper  for  cdac ccpp
Aloha paper for cdac ccpp
 
Report: Test49 Geant4 Monte-Carlo Models Testing Tools
Report: Test49 Geant4 Monte-Carlo Models Testing ToolsReport: Test49 Geant4 Monte-Carlo Models Testing Tools
Report: Test49 Geant4 Monte-Carlo Models Testing Tools
 
Intake 37 linq1
Intake 37 linq1Intake 37 linq1
Intake 37 linq1
 
Gate-Cs 1994
Gate-Cs 1994Gate-Cs 1994
Gate-Cs 1994
 

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

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

Bis 345-final-exam-guide-set-1-new
Bis 345-final-exam-guide-set-1-newBis 345-final-exam-guide-set-1-new
Bis 345-final-exam-guide-set-1-new
 
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 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
Cis 336 final exam 2Cis 336 final exam 2
Cis 336 final exam 2
 
Cis 336 Enhance teaching / snaptutorial.com
Cis 336    Enhance teaching / snaptutorial.comCis 336    Enhance teaching / snaptutorial.com
Cis 336 Enhance teaching / snaptutorial.com
 
Cis 336 Extraordinary Success/newtonhelp.com
Cis 336 Extraordinary Success/newtonhelp.com  Cis 336 Extraordinary Success/newtonhelp.com
Cis 336 Extraordinary Success/newtonhelp.com
 
CIS 336 Inspiring Innovation -- cis336.com
CIS 336 Inspiring Innovation -- cis336.comCIS 336 Inspiring Innovation -- cis336.com
CIS 336 Inspiring Innovation -- cis336.com
 
CIS 336 Redefined Education--cis336.com
CIS 336 Redefined Education--cis336.comCIS 336 Redefined Education--cis336.com
CIS 336 Redefined Education--cis336.com
 
CIS336 Education for Service--cis336.com
CIS336 Education for Service--cis336.comCIS336 Education for Service--cis336.com
CIS336 Education for Service--cis336.com
 
CIS 336 Achievement Education --cis336.com
CIS 336 Achievement Education --cis336.comCIS 336 Achievement Education --cis336.com
CIS 336 Achievement Education --cis336.com
 
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 336 Education Begins--cis336.com
CIS 336 Education Begins--cis336.comCIS 336 Education Begins--cis336.com
CIS 336 Education Begins--cis336.com
 
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 PAPERS Education for Service--cis336papers.com
CIS 336 PAPERS Education for Service--cis336papers.comCIS 336 PAPERS Education for Service--cis336papers.com
CIS 336 PAPERS Education for Service--cis336papers.com
 
CIS 336 STUDY Achievement Education--cis336study.com
CIS 336 STUDY Achievement Education--cis336study.comCIS 336 STUDY Achievement Education--cis336study.com
CIS 336 STUDY Achievement Education--cis336study.com
 
CIS 336 STUDY Become Exceptional--cis336study.com
CIS 336 STUDY Become Exceptional--cis336study.comCIS 336 STUDY Become Exceptional--cis336study.com
CIS 336 STUDY Become Exceptional--cis336study.com
 
CIS 336 Start With a Dream /newtonhelp.com
CIS 336 Start With a Dream /newtonhelp.comCIS 336 Start With a Dream /newtonhelp.com
CIS 336 Start With a Dream /newtonhelp.com
 
CIS 336 STUDY Redefined Education--cis336study.com
CIS 336 STUDY Redefined Education--cis336study.comCIS 336 STUDY Redefined Education--cis336study.com
CIS 336 STUDY Redefined Education--cis336study.com
 
CIS 336 Imagine Your Future/newtonhelp.com   
CIS 336 Imagine Your Future/newtonhelp.com   CIS 336 Imagine Your Future/newtonhelp.com   
CIS 336 Imagine Your Future/newtonhelp.com   
 
Cis 336 final exam 2
Cis 336 final exam 2Cis 336 final exam 2
Cis 336 final exam 2
 

More from assignmentcloud85

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

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 
Spellings Wk 4 and Wk 5 for Grade 4 at CAPS
Spellings Wk 4 and Wk 5 for Grade 4 at CAPSSpellings Wk 4 and Wk 5 for Grade 4 at CAPS
Spellings Wk 4 and Wk 5 for Grade 4 at CAPS
AnaAcapella
 

Recently uploaded (20)

How to Add a Tool Tip to a Field in Odoo 17
How to Add a Tool Tip to a Field in Odoo 17How to Add a Tool Tip to a Field in Odoo 17
How to Add a Tool Tip to a Field in Odoo 17
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Play hard learn harder: The Serious Business of Play
Play hard learn harder:  The Serious Business of PlayPlay hard learn harder:  The Serious Business of Play
Play hard learn harder: The Serious Business of Play
 
Our Environment Class 10 Science Notes pdf
Our Environment Class 10 Science Notes pdfOur Environment Class 10 Science Notes pdf
Our Environment Class 10 Science Notes pdf
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
Economic Importance Of Fungi In Food Additives
Economic Importance Of Fungi In Food AdditivesEconomic Importance Of Fungi In Food Additives
Economic Importance Of Fungi In Food Additives
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
dusjagr & nano talk on open tools for agriculture research and learning
dusjagr & nano talk on open tools for agriculture research and learningdusjagr & nano talk on open tools for agriculture research and learning
dusjagr & nano talk on open tools for agriculture research and learning
 
Spellings Wk 4 and Wk 5 for Grade 4 at CAPS
Spellings Wk 4 and Wk 5 for Grade 4 at CAPSSpellings Wk 4 and Wk 5 for Grade 4 at CAPS
Spellings Wk 4 and Wk 5 for Grade 4 at CAPS
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
UGC NET Paper 1 Unit 7 DATA INTERPRETATION.pdf
UGC NET Paper 1 Unit 7 DATA INTERPRETATION.pdfUGC NET Paper 1 Unit 7 DATA INTERPRETATION.pdf
UGC NET Paper 1 Unit 7 DATA INTERPRETATION.pdf
 

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

  • 1. BIS 345 Final Exam Guide Set 2 NEW Check this A+ tutorial guideline at http://www.assignmentcloud.com/bis- 345/bis-345-final-exam-guide-set-2-new For more classes visit http://www.assignmentcloud.com BIS 345 Final Exam Guide Set 2 NEW 1. (TCO 1) Which of the following portions of an SQL Statement indicate the columns that should be included in the result set?(Points : 5) SELECT FROM WHERE INSERT Question 2.2. (TCO 1) Which of the following operators uses wildcard characters to search for
  • 2. patterns or characters in a character string?(Points : 5) SEARCH LIKE BETWEEN EQUAL TO Question 3.3. (TCO 1) Which of the following characters is used to merge the output of two columns into one? (Points : 5) AND PLUS + Question 4.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
  • 3. WHERE number BETWEEN 4 and 8 WHERE number = '4 or 8' Where number = '4' or '8' Question 5.5. (TCO 1) Assume you have a table called CourseTable. You would like to extract all courses that were developed in June and July of 2008. Which of the following operators would be of most use to you in your WHERE clause? (Points : 5) BETWEEN LIKE IS NULL None of the above Question 6.6. (TCO 1) Given Professors table with LastName, FirstName, and MI fields, which of the following would select all fields from the table? (Points : 5) SELECT * FROM Professors;
  • 4. SELECT * Professors; SELECT Last Name, First Name, MI FROM Professors; SELECT * ALL Question 7.7. (TCO 1) Which of the following would extract all rows containing the numbers 10 or 20? (Points : 5) WHERE number BETWEEN 10 and 20 WHERE number = 10 or number = 20 WHERE number = '10 or 20' Where number = '10' or '20' Question 8.8. (TCO 3) Which of the following statements would extract the average price of all the products? Assume you have a table with the following columns:
  • 5. (Points : 5) SELECT ProductID, Avg(UnitPrice) FROM ProductTable GROUP BYProductID; SELECT Average(UnitPrice) FROM ProductTable; SELECT Avg(UnitPrice) FROM ProductTable; None of the above Question 9.9. (TCO 3) Which of the following statements would the extract the total value of all the orders? Assume you have a table with the following columns: (Points : 5) SELECT Total(OrderTotal) FROM OrderTable;
  • 6. SELECT Sum(OrderTotal) FROM OrderTable; SELECT Sum(OrderTotal) FROM OrderTable GROUP BY OrderTotal; SELECT Rollup(OrderTotal) FROM OrderTable; Question 10.10. (TCO 4) Assume you have two queries. The first query selects its data using a join involving five tables. The second query selects its data using a join involving three tables. Which of the queries would run faster, all other things being equal? (Points : 5) The first query will run slower than the second query. The second query will run slower than the second query. The queries will run at the same speed.
  • 7. All of the above Question 11.11. (TCO 4) Assume you have two select queries that must join two tables. The first query uses the INNER JOIN keyword, while the other accomplishes the join using the WHERE clause. Which query will be more likely to run faster - the first query or the second query? (Points : 5) The first query will run slower than the second query. The second query will run slower than the first query. The queries will run at the same speed. All of the above Question 12.12. (TCO 7) Which of the following file formats are used to import data into SSRS. (Points : 5)
  • 8. CSV PDF SLN docx Question 13.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 Question 14.14. (TCO 8)_is the process of creating ciphertext. (Points : 5) Passcoding Digital Certificate
  • 9. Symmetric Encryption Question 15.15. (TCO 9) Which of the following reports requires the reader to look at data in both column and row format? (Points : 5) Matrix Exception Tabular None of the above Question 16.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
  • 10. Question 17.17. (TCO 9) Which date function will return the difference between two dates in the specified units? (Points : 5) DATEDIFFERENCE DATEPART DATEDIFF DATEADD Question 18.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
  • 11. Question 19.19. (TCO 10) Which of the following is NOT one of the formats available for reports? (Points : 5) XML HTML PDF XPDF Question 20.20. (TCO 2) Which date function will return the difference between two dates in the specified units? (Points : 5) DATEDIFFERENCE DATEPART DATEDIFF DATEADD Question 21.21. (TCO 2) Which of the following functions would you use to extract the year, month, or day records in the database? (Points : 5)
  • 12. Datepart Datediff Dateout Dateyear Question 22.22. (TCO 2) Which of the following functions would you use to extract characters from the middle of a string. (Points : 5) Left() Right() Middle() Substring() Question 23.23. (TCO 3) Which of the following aggregate functions can be used with any data type. (Points : 5) MAX SUM
  • 13. COUNT AVG Question 24.24. (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 Question 25.25. (TCO 5) SSRS uses all of the following types of extensions except_. (Points : 5) data processing security delivery communication
  • 14. Question 26.26. (TCO 5) By default when we add a table to our report in Business Intelligence Development Studio, the table has_columns. (Points : 5) 2 3 4 5 Question 27.27. (TCO 5) You can use the_in Business Intelligence Development Studio to access the report items controls. (Points : 5) Design tab Toolbox Toolbar Preview tab
  • 15. Question 28.28. (TCO 7) The chart control used in SSRS is licensed from_software. (Points : 5) Dundas Adobe Apple Google Question 29.29. (TCO 7)_presents group data in a grid layout that's capable of expanding both rows and columns. (Points : 5) Table Matrix List Dropdown Question 30.30. (TCO 6) A_parameter are used during the processing of the query. (Points : 5) Multidimensional Expressions (MDX)
  • 16. query report Multivalue parameters Question 31.31. (TCO 6) Which data source credentials option is considered an integrated security type. (Points : 5) Prompt for credentials Windows authentication Hard-code credentials No credentials Question 32.32. (TCO 6)_data source is used to dynamically choose the data source at runtime. (Points : 5) embedded shared unique
  • 17. expression Question 33.33. (TCO 3) Which of the following aggregate functions would not ignore null values. (Points : 5) Count AVG MAX Sum Question 34.34. (TCO 3) Which of the following is not a valid aggregate function. (Points : 5) DATEDIFFERENCE COUNT MAX MIN
  • 18. Question 35.35. (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 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 Part 1: Write the complete SQL statement needed to return the rows that meet these requirements.
  • 19. 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) Part 3: To extract the three-digit exchange I used the LEFT(Phone,3) funcion. 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: Part 1:
  • 20. SELECT City, COUNT(*) FROM tblCustomer GROUP BY City HAVING COUNT(*)>1 ORDER BY City 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 1: The two enhancements I would make would be: Part 2: Describe at least two features you would include that would add functionality to the report
  • 21. and improve its flexibility for the user. (Points : 25) Part 2: If I had to include two features to add functionality to the report and improve its flexibility they would be: