Please enter your details here.
An array that maintains multiple sets of information referenced by more than one index is called ________________
What is the color of comments?
An object is composed of :
A loop that does not have the way of stopping is called a ___________
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
__________ are the attributes of an object that control the object's appearance and behavior.
Which windows displays a list of all forms and modules making up your application.
There can be different data types of an element in an array
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 statement is not a looping statement in VBA?
What will be the output of the following statement?
txtBox.Text = FormatCurrency(1234.567)
A ____________ is a predefined VB procedure that you can call upon when needed.
___________ statement enables us to trap runtime error.
Basic Excel Object model as follows:
Which character in VBA, indicates start of a comment
Which of the following statements is not true about user-defined functions?
Which property for a textbox allows the textbox to accept more than 1 line of data entry?
To save a VBA project with an Excel workbook, the workbook must be saved as what type of file?
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
The _______________ control used to insert image to the form
Which part of VBA window, refers to area where code is written.
___________ indicates whether a particular condition is on or off
A single Case statement can contain multiple values
Which Case clause will be true whenever the value of the selector in a Select Case block is between 1 and 5 or is 8?
Suppose you need to develop an online poll of user responses to a question. For convenience, you would like the most popular options to be displayed in a list for the user to quickly select an option and submit their answer. However, you would also like them to be able to use the same control to allow them to specify an write-in value of their own. Which control is most appropriate for this application?
Why Macro is used
___________ function is used to return a copy of a string without leading spaces.
Which of the following arithmetic operations has the highest level of precedence?
This operator reverses the truth value of an expression; making a true expression false and a false expression true.