Please enter your details here.
A loop that does not have the way of stopping is called a ___________
To save a VBA project with an Excel workbook, the workbook must be saved as what type of file?
Which of the following arithmetic operations has the highest level of precedence?
To break up long lines of code, the line continuation character in VBA is
32-bit Software/Applications can be installed on:
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 event, runs macros automatically in excel VBA while opening Workbook
A single Case statement can contain multiple values
There can be different data types of an element in an array
Suppose you are designing an application for admissions to a college or university, and you need to decide how to provide the user with a selection of racial backgrounds. Which control would be most appropriate?
A ____________ is a predefined VB procedure that you can call upon when needed.
The _______________ statement first executes the statements and then tests the condition after each execution
Suppose the variable myName is declared in a Dim statement in two different Sub procedures. Which statement is true?
Which of the following statement is not a looping statement in VBA?
Which windows displays a list of all forms and modules making up your application.
___________ control is used to provide an identifiable grouping for other controls
Which character in VBA, indicates start of a comment
What value is stored in a variable of type single if we try to assign the variable to the value 634?
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
Private Procedure can be called from anywhere in the project
What do you need to select to set the developer mode?
Which property for a textbox allows the textbox to accept more than 1 line of data entry?
The value returned by InputBox is a string
What data type can hold any type of data?
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?
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 object is composed of :
To load graphics on a control at runtime, we have to use the function….
To close a form named Form1, you can use:
What will be the output of the following statement?
txtBox.Text = FormatCurrency(1234.567)