Please enter your details here.
__________ are the attributes of an object that control the object's appearance and behavior.
___________ statement enables us to trap runtime error.
To save a VBA project with an Excel workbook, the workbook must be saved as what type of file?
___________ function is used to return a copy of a string without leading spaces.
Why Macro is used
A ____________ is a predefined VB procedure that you can call upon when needed.
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 control is used for titles/captions
Which event, runs macros automatically in excel VBA while opening Workbook
Do…Loop... Until code block is always executed once.
Which character in VBA, indicates start of a comment
Which of the following arithmetic operations has the highest level of precedence?
To load graphics on a control at runtime, we have to use the function….
What will be the output of the following statement?
txtBox.Text = FormatCurrency(1234.567)
Which of the following is default in VBA for data passing?
The Properties window plays an important role in the development of Visual Basic Applications. It is mainly used
Study the screenshot below. What is the appropriate action to take when a workbook displays this message (Security Warning Macros have been disabled)?
There can be different data types of an element in an array
To force all variables is a VBA project to be declared, which must be stated in a module?
You have declared 4 variables
Which of these variable declarations is not a valid VBA statement?
An array that maintains multiple sets of information referenced by more than one index is called ________________
A loop that does not have the way of stopping is called a ___________
What is the color of comments?
When the form is first referenced in any manner by program,the triggered event is….
This operator reverses the truth value of an expression; making a true expression false and a false expression true.
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
A single Case statement can contain multiple values
Which of the following statement is not a looping statement in VBA?
To break up long lines of code, the line continuation character in VBA is