Please enter your details here.
Which of the following statement is not a looping statement in VBA?
___________ function is used to return a copy of a string without leading spaces.
Why Macro is used
Which of the following arithmetic operations has the highest level of precedence?
Which of the following statements is not true about user-defined functions?
To force all variables is a VBA project to be declared, which must be stated in a module?
What data type can hold any type of data?
Which of the following is default in VBA for data passing?
To close a form named Form1, you can use:
__________ are the attributes of an object that control the object's appearance and behavior.
Which character in VBA, indicates start of a comment
Basic Excel Object model as follows:
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
To load graphics on a control at runtime, we have to use the function….
When the form is first referenced in any manner by program,the triggered event is….
There can be different data types of an element in an array
A loop that does not have the way of stopping is called a ___________
This operator reverses the truth value of an expression; making a true expression false and a false expression true.
The value returned by InputBox is a string
What is the color of comments?
Which property for a textbox allows the textbox to accept more than 1 line of data entry?
What will be the output of the following statement?
txtBox.Text = FormatCurrency(1234.567)
32-bit Software/Applications can be installed on:
___________ control is used to provide an identifiable grouping for other controls
The _______________ control used to insert image to the form
An array that maintains multiple sets of information referenced by more than one index is called ________________
Private Procedure can be called from anywhere in the project
What value is stored in a variable of type single if we try to assign the variable to the value 634?
Which event, runs macros automatically in excel VBA while opening Workbook
A ______________ returns a value to the part of the program that called it.