Please enter your details here.
A loop that does not have the way of stopping is called a ___________
The _______________ statement first executes the statements and then tests the condition after each execution
Private Procedure can be called from anywhere in the project
To save a VBA project with an Excel workbook, the workbook must be saved as what type of file?
What will be the output of the following statement?
txtBox.Text = FormatCurrency(1234.567)
Which of the following statement is not a looping statement in VBA?
VBA Code run by
Which windows displays a list of all forms and modules making up your application.
The _______________ control used to insert image to the form
Basic Excel Object model as follows:
Study the screenshot below. What is the appropriate action to take when a workbook displays this message (Security Warning Macros have been disabled)?
Which of the following arithmetic operations has the highest level of precedence?
Which of the following statements is not true about user-defined functions?
A Combo box is loaded in the From_Initialize event with:
Combo1.AddItem “Red”
Combo1.AddItem “Blue”
Combo1.AddItem “Green”
This control is used for titles/captions
What data type can hold any type of data?
To force all variables is a VBA project to be declared, which must be stated in a module?
To close a form named Form1, you can use:
A single Case statement can contain multiple values
The Properties window plays an important role in the development of Visual Basic Applications. It is mainly used
__________ are the attributes of an object that control the object's appearance and behavior.
_______________ is the function to compare 2 strings.
___________ function is used to return a copy of a string without leading spaces.
Which is the conversion for the following If...Then...ElseIf statement to a Select...Case statement?
If intValue > 0 And intValue <= 9 Then
discount = .10
Else If intValue >9 And intValue <=20
discount = .15
Else
discount = .20
There can be different data types of an element in an array
Which property determines whether a control is displayed to the user?
The value returned by InputBox is a string
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
A ____________ is a predefined VB procedure that you can call upon when needed.
What will be the output of the following code?
Sub LoopExample()
Dim StartNumber As Integer
Dim EndNumber As Integer
Dim Answer As Integer
Answer = 5
EndNumber = 5
For StartNumber = 1 To EndNumber
Answer = Answer + EndNumber
Next StartNumber
MsgBox Answer
End Sub