Please enter your details here.
To save a VBA project with an Excel workbook, the workbook must be saved as what type of file?
An object is composed of :
Which of the following statements is not true about user-defined functions?
What property of controls tells the order they receive the focus when the tab key is pressed during run time? it.
This operator reverses the truth value of an expression; making a true expression false and a false expression true.
An array that maintains multiple sets of information referenced by more than one index is called ________________
Which character in VBA, indicates start of a comment
To close a form named Form1, you can use:
Which of the following arithmetic operations has the highest level of precedence?
You have declared 4 variables
Which of these variable declarations is not a valid VBA statement?
Do…Loop... Until code block is always executed once.
What value is stored in a variable of type single if we try to assign the variable to the value 634?
Which of the following is default in VBA for data passing?
This control is used for titles/captions
___________ statement enables us to trap runtime error.
Private Procedure can be called from anywhere in the project
What will the value of ThisVar be after the following lines of code execute?
Dim ThisVar As String Dim MyName = "John" ThisVar = MyName & "John"
To load graphics on a control at runtime, we have to use the function….
A ______________ returns a value to the part of the program that called it.
__________ are the attributes of an object that control the object's appearance and behavior.
Study the screenshot below. What is the appropriate action to take when a workbook displays this message (Security Warning Macros have been disabled)?
A Combo box is loaded in the From_Initialize event with:
Combo1.AddItem “Red”
Combo1.AddItem “Blue”
Combo1.AddItem “Green”
Which property for a textbox allows the textbox to accept more than 1 line of data entry?
What do you need to select to set the developer mode?
The _______________ control used to insert image to the form
What will be the output of the following statement?
txtBox.Text = FormatCurrency(1234.567)
The Properties window plays an important role in the development of Visual Basic Applications. It is mainly used
A ____________ is a predefined VB procedure that you can call upon when needed.
What is the color of comments?
Suppose the variable myName is declared in a Dim statement in two different Sub procedures. Which statement is true?