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