Please enter your details here.
This operator reverses the truth value of an expression; making a true expression false and a false expression true.
To save a VBA project with an Excel workbook, the workbook must be saved as what type of file?
An array that maintains multiple sets of information referenced by more than one index is called ________________
What do you need to select to set the developer mode?
VBA Code run by
What data type can hold any type of data?
Which windows displays a list of all forms and modules making up your application.
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 of the following arithmetic operations has the highest level of precedence?
The _______________ statement first executes the statements and then tests the condition after each execution
What will be the output of the following statement?
txtBox.Text = FormatCurrency(1234.567)
___________ function is used to return a copy of a string without leading spaces.
Which part of VBA window, refers to area where code is written.
Basic Excel Object model as follows:
Why Macro is used
Which of the following is default in VBA for data passing?
To force all variables is a VBA project to be declared, which must be stated in a module?
This control is used for titles/captions
To break up long lines of code, the line continuation character in VBA is
Which of the following statement is not a looping statement in VBA?
Do…Loop... Until code block is always executed once.
To load graphics on a control at runtime, we have to use the function….
__________ are the attributes of an object that control the object's appearance and behavior.
A Combo box is loaded in the From_Initialize event with:
Combo1.AddItem “Red”
Combo1.AddItem “Blue”
Combo1.AddItem “Green”
A ______________ returns a value to the part of the program that called it.
A ____________ is a predefined VB procedure that you can call upon when needed.
Which property determines whether a control is displayed to the user?
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
When the form is first referenced in any manner by program,the triggered event is….
Which of the following statements is not true about user-defined functions?