Please enter your details here.
To force all variables is a VBA project to be declared, which must be stated in a module?
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?
Which character in VBA, indicates start of a comment
A loop that does not have the way of stopping is called a ___________
An array that maintains multiple sets of information referenced by more than one index is called ________________
Which part of VBA window, refers to area where code is written.
What data type can hold any type of data?
There can be different data types of an element in an array
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 save a VBA project with an Excel workbook, the workbook must be saved as what type of file?
When the form is first referenced in any manner by program,the triggered event is….
Do…Loop... Until code block is always executed once.
A ______________ returns a value to the part of the program that called it.
_______________ is the function to compare 2 strings.
To break up long lines of code, the line continuation character in VBA is
Which of the following is default in VBA for data passing?
Which is the conversion for the following If...Then...ElseIf statement to a Select...Case statement?
If intValue > 0 And intValue <= 9 Then
discount = .10
Else If intValue >9 And intValue <=20
discount = .15
Else
discount = .20
To load graphics on a control at runtime, we have to use the function….
You have declared 4 variables
Which of these variable declarations is not a valid VBA statement?
___________ statement enables us to trap runtime error.
The value returned by InputBox is a string
Which event, runs macros automatically in excel VBA while opening Workbook
What do you need to select to set the developer mode?
Basic Excel Object model as follows:
___________ indicates whether a particular condition is on or off
Which property for a textbox allows the textbox to accept more than 1 line of data entry?
___________ function is used to return a copy of a string without leading spaces.
32-bit Software/Applications can be installed on:
An object is composed of :
__________ are the attributes of an object that control the object's appearance and behavior.