Please enter your details here.
This operator reverses the truth value of an expression; making a true expression false and a false expression true.
An array that maintains multiple sets of information referenced by more than one index is called ________________
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
_______________ is the function to compare 2 strings.
The _______________ statement first executes the statements and then tests the condition after each execution
What value is stored in a variable of type single if we try to assign the variable to the value 634?
To force all variables is a VBA project to be declared, which must be stated in a module?
A loop that does not have the way of stopping is called a ___________
Which property determines whether a control is displayed to the user?
__________ are the attributes of an object that control the object's appearance and behavior.
Do…Loop... Until code block is always executed once.
Which of the following is default in VBA for data passing?
A single Case statement can contain multiple values
You have declared 4 variables
Which of these variable declarations is not a valid VBA statement?
___________ statement enables us to trap runtime error.
When the form is first referenced in any manner by program,the triggered event is….
___________ control is used to provide an identifiable grouping for other controls
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
To close a form named Form1, you can use:
What property of controls tells the order they receive the focus when the tab key is pressed during run time? it.
The _______________ control used to insert image to the form
A ______________ returns a value to the part of the program that called it.
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 is the color of comments?
Which part of VBA window, refers to area where code is written.
Which property for a textbox allows the textbox to accept more than 1 line of data entry?
Which event, runs macros automatically in excel VBA while opening Workbook
What will the value of ThisVar be after the following lines of code execute?
Dim ThisVar As String Dim MyName = "John" ThisVar = MyName & "John"
Which windows displays a list of all forms and modules making up your application.
To save a VBA project with an Excel workbook, the workbook must be saved as what type of file?