Visual Basic responds to events using which of the following?
When the user clicks a button, _________ is triggere
What property of controls tells the order they receive the focus when the tab key is pressed during run time?
Sizing Handles make it very easy to resize virtually any control when developing applications with Visual Basi When working in the Form Designer, how are these sizing handles displayed?
The Properties window plays an important role in the development of Visual Basic applications. It is mainly used
When creating a new application in Visual Basic, you are asked to supply a name for the program. If you do not specify a name, a default name is XXXXX XXXXX is this default name?
Which of the properties in a control’s list of properties is used to give the control a meaningful name?
An algorithm is defined as:
A variable declared inside an event procedure is said to have local scope
A variable declared outside of an event procedure is said to have class-level scope.
What is the correct statement when declaring and assigning the value of 100 to an Integer variable called numPeople
Which of the following arithmetic operations has the highest level of precedence?
What value will be assigned to the numeric variable x when the following statement is executed? x = 2 + 3 * 4
Which of the following is a valid name for a variable?
Keywords in Visual Basic are words that
To continue a long statement on another line, use:
What is the proper syntax when using a message dialog box?
What will be the output of the following statement? txtBox.Text = FormatCurrency(1234.567)
The following lines of code are correct. If age >= 13 And <20 Then txtOutput.Text = “You are a teenager.” End If
Given that x = 7, y = 2, and z = 4, the following If block will display “TRUE”. If (x > y) Or (y > z) Then txtBox.Text = “TRUE” End If
Asc(“A”) is 65. What is Asc(“C”)?
Asc(“A”) is 65. What is displayed by txtBox.Text = Chr(65) & “BC”?
Which of the following expressions has as its value the words “Hello World? surrounded by quotation marks?
Which of the following is true?
Pseudocode is