Self Review Exercises 3 Flashcards
SRE 3
A Button’s text should use ______ capitalization.
Book title
SRE 3
The Form’s _____ property specifies the text that’s displayed in the Form’s title bar.
Text
SRE 3
Property _____ specifies how text is aligned within a Label’s boundaries.
TextAlign
SRE 3
An output label should _____
a) be distinguishable from other labels
b) initially have an empty Text property or a default value
c) use Fixed3D for the BorderStyle property
d) All of the above
d) all of the above
SRE 3
A button’s ____ property sets the text on the face of the button
Text
SRE 3
If there are errors in an app, they appear in a window known as the _______
error list
SRE 3
When a value is placed in a memory location, the value ______ the previous value in that location
replaces
SRE 3
When a value is read from memory, that value is _____
not overwritten
SRE 3
Arithmetic expressions must be written _____ to facilitate entering apps into the computer.
a) using parentheses
b) on multiple lines
c) in straight-line form
d) none of the above
in straight line form
SRE 3
The expression to the right of an assignment operator (=) is evaluated _______ the assignment occurs
a) before
b) after
c) at the same time
d) none of the above
before
SRE 3
True or False: Comments cause the computer to print the text after the ‘ on the screen when the program executes.
False. comments do not cause any action to be performed when the program executes. They’re used to document programs and improve their readability.
SRE 3
True or False: All variables must be declared before they can be used in a visual basic program
True
SRE 3
True or False: Visual Basic considers the variable names number and NuMbEr to be different.
False. Identifiers are not case sensitive, so these variable names are identical.
SRE 3
True or False: The arithmetic operators *, /, + and - all have the same level of precedence
False. The operators * and / have the same level of precedence, and the operators + and - are on a lower level of precedence
SRE 3
True or False: A string of characters contained between double quotation marks is called a phrase or phrase literal
False. A string of characters is called a string or string literal.