Please enter your details here.
___________ control is used to provide an identifiable grouping for other controls
You have declared 4 variables
Which of these variable declarations is not a valid VBA statement?
Which character in VBA, indicates start of a comment
Why Macro is used
What do you need to select to set the developer mode?
To save a VBA project with an Excel workbook, the workbook must be saved as what type of file?
Which of the following is default in VBA for data passing?
To close a form named Form1, you can use:
VBA Code run by
___________ function is used to return a copy of a string without leading spaces.
Which property for a textbox allows the textbox to accept more than 1 line of data entry?
Suppose the variable myName is declared in a Dim statement in two different Sub procedures. Which statement is true?
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
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
What data type can hold any type of data?
___________ statement enables us to trap runtime error.
What is the color of comments?
What will the value of ThisVar be after the following lines of code execute?
Dim ThisVar As String Dim MyName = "John" ThisVar = MyName & "John"
Which event, runs macros automatically in excel VBA while opening Workbook
The _______________ statement first executes the statements and then tests the condition after each execution
A single Case statement can contain multiple values
An array that maintains multiple sets of information referenced by more than one index is called ________________
Private Procedure can be called from anywhere in the project
_______________ is the function to compare 2 strings.
The value returned by InputBox is a string
Study the screenshot below. What is the appropriate action to take when a workbook displays this message (Security Warning Macros have been disabled)?
An object is composed of :
Which property determines whether a control is displayed to the user?
What will be the output of the following statement?
txtBox.Text = FormatCurrency(1234.567)
Which of the following arithmetic operations has the highest level of precedence?