Match the following terms with their description
I. Properties
II. Separators
III. Method
IV. Code window
V. Parameter
A. Indicate the distinction between the object container and the member of that container
B. Action
C. Special kind of variable
D. Attributes
E. Where all the VBA code is typed
Answer: D, A, B, E, C
You might also like to view...
Name four of the seven elements that make up a story.
What will be an ideal response?
Creating a(n) ____________________, like the one in the accompanying figure, lets you organize selected layers in a way that makes sense to you.
Fill in the blank(s) with the appropriate word(s).
Which of the following is NOT true about how Twitter works?
A) Tweets are like short text-only blog posts made to the Twitter site. B) Twitter works much like a blogging service but with restrictions on what can be posted. C) A tweet feed can be viewed on a follower's computer or on all mobile phones. D) People who subscribe to a given user see a feed of a user's tweets, much as a subscriber to a blog sees a feed of blog posts.
(Correct the Code Errors) Identify and correct the error(s) in each of the following:
``` unsigned int x{1}; unsigned int total; while (x <= 10) { total += x; ++x; } ```