Chapter 1 Flashcards

1
Q

standard VBA line continuation character sequence

A

a space followed by an underscore character

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

location to set macro security properties

A

File->Options->Trust Center->Trust Center Settings

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Recommended security setting for macros

A

Disable all macros with notification

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

other locations of VBA

A

other members of Microsoft Office

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

VBA is these two types of languages

A

programming language

macro language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

macro word origin

A

Greek makros

means large

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

You can customize your ____ _____ _____ with your own buttons that execute the macros you write.

A

Quick Access toolbar

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Buttons for executing macros can also be added to this

A

the Ribbon

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

VBA can be used to create custom versions of these

A

worksheet functions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

You can use VBA to develop your own special-purpose ___-____.

A

add-ins

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

VBA consists of these two types of procedures

A

Sub procedures

Function procedures

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Function procedures return this

A

a single value

Example:

Function AddTwo (arg1,arg2)

AddTwo=arg1+arg2

End Function

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

VBA manipulates these

A

objects

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Objects can act as ____ for other objects.

A

containers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

object model refers to

A

the arrangement of objects

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Objects of the same type form this

A

a collection

17
Q

Collections are themselves _____.

A

objects

18
Q

You refer to an object by specifying its position in the object hierarchy with this

A

a dot separator

19
Q

Objects have these which you can use VBA code to change or determine.

A

properties

20
Q

How do you refer to an object’s property

A

Combine the object name with the property name separated by a dot.

Example:

Worksheets(“Sheet1”).Range(“A1”).Value

21
Q

Use these in VBA code to store values, text and property settings

A

variables

Example:

Interest = Worksheets(“Sheet1”).Range(“A1”).Value

22
Q

A ____ is an action Excel performs with an object.

A

method

23
Q

Specify a method by doing this

A

Combining the object name with the method, separated by a dot

Example:

Worksheets(“Sheet1”).Range(“A1”).ClearContents

24
Q

VBA includes all of these three constructs of modern programming languages

A

variables

arrays

looping

25
Q

First version of Excel and when it appeared

A

Excel 2

1987

26
Q

First Excel version to use VBA, and year of release

A

Excel 5

1994

27
Q

First version of Excel to support a million rows

A

Excel 2007

28
Q

Excel 2016 online and mobile device versions do not support this

A

VBA