Please enter your details here.
Why Macro is used
Basic Excel Object model as follows:
___________ control is used to provide an identifiable grouping for other controls
There can be different data types of an element in an array
Which property determines whether a control is displayed to the user?
A ____________ is a predefined VB procedure that you can call upon when needed.
This operator reverses the truth value of an expression; making a true expression false and a false expression true.
Suppose the variable myName is declared in a Dim statement in two different Sub procedures. Which statement is true?
A single Case statement can contain multiple values
VBA Code run by
What data type can hold any type of data?
To load graphics on a control at runtime, we have to use the function….
What property of controls tells the order they receive the focus when the tab key is pressed during run time? it.
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 part of VBA window, refers to area where code is written.
An object is composed of :
Which of the following statements is not true about user-defined functions?
The _______________ control used to insert image to the form
What is the color of comments?
Private Procedure can be called from anywhere in the project
An array that maintains multiple sets of information referenced by more than one index is called ________________
The _______________ statement first executes the statements and then tests the condition after each execution
To break up long lines of code, the line continuation character in VBA is
To close a form named Form1, you can use:
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.
Which character in VBA, indicates start of a comment
Given the following section of code, if a programmer called the GetAge() subroutine, what value would the message box display?
Private Sub GetAge()
Dim UserAge As String
UserAge = 10
UserAge = InputBox("Enter your age", "Get Age")
Call ShowAge
End Sub
Private Sub ShowAge()
Dim UserAge As Integer
UserAge = 0
MsgBox (UserAge)
What do you need to select to set the developer mode?
___________ indicates whether a particular condition is on or off