Please enter your details here.
You have declared 4 variables
Which of these variable declarations is not a valid VBA statement?
To break up long lines of code, the line continuation character in VBA is
This operator reverses the truth value of an expression; making a true expression false and a false expression true.
The _______________ statement first executes the statements and then tests the condition after each execution
The _______________ control used to insert image to the form
There can be different data types of an element in an array
A Combo box is loaded in the From_Initialize event with:
Combo1.AddItem “Red”
Combo1.AddItem “Blue”
Combo1.AddItem “Green”
To close a form named Form1, you can use:
_______________ is the function to compare 2 strings.
A loop that does not have the way of stopping is called a ___________
To force all variables is a VBA project to be declared, which must be stated in a module?
To load graphics on a control at runtime, we have to use the function….
___________ statement enables us to trap runtime error.
A ______________ returns a value to the part of the program that called it.
Which windows displays a list of all forms and modules making up your application.
___________ control is used to provide an identifiable grouping for other controls
Which property for a textbox allows the textbox to accept more than 1 line of data entry?
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?
This control is used for titles/captions
___________ function is used to return a copy of a string without leading spaces.
What value is stored in a variable of type single if we try to assign the variable to the value 634?
Basic Excel Object model as follows:
Which part of VBA window, refers to area where code is written.
Which of the following statements is not true about user-defined functions?
Do…Loop... Until code block is always executed once.
A ____________ is a predefined VB procedure that you can call upon when needed.
Private Procedure can be called from anywhere in the project
A single Case statement can contain multiple values
Which of the following arithmetic operations has the highest level of precedence?
__________ are the attributes of an object that control the object's appearance and behavior.