Please enter your details here.
Which windows displays a list of all forms and modules making up your application.
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)
Given that x = 7, y = 2, and z = 4, the following If block will display “TRUE”. If (x > y) Or (y > z) Then txtBox.Text = “TRUE” End If
Which of the following statement is not a looping statement in VBA?
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
Which part of VBA window, refers to area where code is written.
_______________ is the function to compare 2 strings.
What value is stored in a variable of type single if we try to assign the variable to the value 634?
To close a form named Form1, you can use:
The value returned by InputBox is a string
This operator reverses the truth value of an expression; making a true expression false and a false expression true.
Why Macro is used
Which of the following statements is not true about user-defined functions?
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
An object is composed of :
32-bit Software/Applications can be installed on:
___________ indicates whether a particular condition is on or off
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?
VBA Code run by
Do…Loop... Until code block is always executed once.
To break up long lines of code, the line continuation character in VBA is
What do you need to select to set the developer mode?
A loop that does not have the way of stopping is called a ___________
A single Case statement can contain multiple values
When the form is first referenced in any manner by program,the triggered event is….
Which event, runs macros automatically in excel VBA while opening Workbook
___________ function is used to return a copy of a string without leading spaces.
An array that maintains multiple sets of information referenced by more than one index is called ________________