Exam 2- Final Flashcards
The VBA Environment
P. 141
What does VBA stand for?
Visual basics for applications p. 141
What are the 2 types of coding mistakes?
Syntax errors and logic errors. p. 143
Which kind of coding mistake is less often caught by the syntax checker?
logical mistakes p. 144
Dim is short for
dimension
Why should you avoid the variant data type?
It increases processing time because the interpreter must take extra steps to figure out what type of data is stored in the variable. p. 147
T/F You must use Dim as for each variable you declare
True You can do Dim J,K,L as long It has to be Dim J as long, K as long, L as long p. 148
What does typing option explicit at the top of your module do?
Forces you to declare variables. (Helps you avoid errors)
p. 148
Workbook Navigation
p. 162
What are the 2 types of objects?
Data-centric objects
Tool-centric objects
p. 162
What is the difference between data-centric objects and tool-centric objects?
Data-centric objects contain data and a set of predefined methods that manipulate the data. (Range of cells, worksheet, a cell)
Tool-centric objects are tools with specific functionality that can be added to a workbook (button, text box)
p.162
In workbook navigation, what are methods?
A set of predefined actions that can be performed on the data contained in the object. p. 162
In workbook navigation, what are properties?
Characteristics of an object. p.162
What 2 kinds of databases are there?
operational and analytical
BI slides
Which kind of database is used for daily business process, accounting, reports?
operational
BI slides
What is data mining?
Predicting the future
BI slides
What is the difference between a data warehouse and a data mart?
A data warehouse has an enterprisewide organizational focus, while a data mart focuses on a subset of information for a given business unit such as finance
BI Slides
What are the 2 primary tools to summarize data and characterize present status in BI?
Cubes
Dashboards
BI slides
What is the common term for the representation of multidimensional information?
Cubes
BI slide 10
What is a small scale, offline version of a data cube?
Excel pivot tables?
BI slide 11
___ allow users (typically managers) to get a high level overview of the organization’s “health” or current status—as told by the data being gathered.
Dashboards
BI slide 12
The data points included in the dashboard are referred to as
Key performance indicators
BI slide 12
Common forms of data-mining analysis capabilities include (5)
Cluster analysis Association detection Statistical analysis Key influencers analysis Time series forecasts
Bi Slide 13
___ is a technique used to divide an information set into mutually exclusive groups such that the members of each group are as close together as possible to one another and the different groups are as far apart as possible
Cluster analysis
Bi slide 15