Please enter your details here.
Which Case clause will be true whenever the value of the selector in a Select Case block is between 1 and 5 or is 8?
The value returned by InputBox is a string
To force all variables is a VBA project to be declared, which must be stated in a module?
Which property for a textbox allows the textbox to accept more than 1 line of data entry?
What will the value of ThisVar be after the following lines of code execute?
Dim ThisVar As String Dim MyName = "John" ThisVar = MyName & "John"
An array that maintains multiple sets of information referenced by more than one index is called ________________
Basic Excel Object model as follows:
This operator reverses the truth value of an expression; making a true expression false and a false expression true.
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
What value is stored in a variable of type single if we try to assign the variable to the value 634?
Why Macro is used
___________ control is used to provide an identifiable grouping for other controls
What is the color of comments?
The _______________ control used to insert image to the form
To break up long lines of code, the line continuation character in VBA is
What property of controls tells the order they receive the focus when the tab key is pressed during run time? it.
There can be different data types of an element in an array
To close a form named Form1, you can use:
Which of the following arithmetic operations has the highest level of precedence?
What data type can hold any type of data?
A single Case statement can contain multiple values
The _______________ statement first executes the statements and then tests the condition after each execution
A loop that does not have the way of stopping is called a ___________
Private Procedure can be called from anywhere in the project
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)
___________ statement enables us to trap runtime error.
The Properties window plays an important role in the development of Visual Basic Applications. It is mainly used
Which part of VBA window, refers to area where code is written.
Which of the following statements is not true about user-defined functions?