The . . . . . . . . method creates a periodic payment on either a loan or an investment.
A. Financial
B. Pmt
C. Financial.Pmt
D. Calculate
Select an option to see the answer and solution.
The data control s used to link . . . . . . . .
A. oracle
B. ms-excel
C. ms-access
D. none of these
Select an option to see the answer and solution.
Which of the following statement is used to define a class in visual basic?
A. Event class statement
B. Class statement
C. Form class statement
D. Event statement
Select an option to see the answer and solution.
Which property specifies the position of the upper left corner of the control?
A. Top Property
B. Position Property
C. Location Property
D. Starting Position Property
Select an option to see the answer and solution.
The . . . . . . . . method converts a string to a number.
A. Tryparse
B. Parse
C. Convert
D. Extern
Select an option to see the answer and solution.
An application uses a structure named Employee. Which of the following statements declares a five-element array of Employee structure variables?
A. Dim workers(4) As Employee
B. Dim workers(5) As Employee
C. Dim workers As Employee(4)
D. Dim workers As Employee(5)
Select an option to see the answer and solution.
In the below statement when true is returned?
If str="USE" Xor strln="USE" Then
A. When both the sub-conditions are true
B. When only one sub-condition is true
C. When both the sub-conditions are false
D. It never returns true
Select an option to see the answer and solution.
Which of the following rounds the contents of the intNum variable to three decimal places?
A. Math.Round(3, intNum)
B. Math.Round(intNum, 3)
C. Round.Math(intNum, 3)
D. Round.Math(3, intNum)
Select an option to see the answer and solution.
. . . . . . . . this control is use to display the images
A. image
B. combo
C. shape
D. text
Select an option to see the answer and solution.
. . . . . . . . data type can store any type of data.
A. Object
B. Universal
C. DataType
D. Common
Select an option to see the answer and solution.
The number of choices the user can select is controlled by the list box's . . . . . . . .
A. SelectionModeProperty
B. Select Property
C. Check Property
D. IsSelect Property
Select an option to see the answer and solution.
What will be in text, if Intid contains 3?
Select Case Intid
Case 1
Text="Jannet"
Case 2 to 4
Text="Mark"
Case 5, 7
Text="Jerry"
Case Else
Text="Sue"
End Select
A. Jannet
B. Mark
C. Jerry
D. Sue
Select an option to see the answer and solution.
. . . . . . . . is used to check the condition with step by step by in this also we the condition more than one .
A. end if condition
B. next
C. else if ladder
D. nested
Select an option to see the answer and solution.
The intSales array is declared as follows: Dim intSales() As Integer = {10000, 12000, 900, 500, 20000}. Which of the following If clauses determines whether the intSub variable contains a valid subscript for the array?
Options are not available for this question.
Select an option to see the answer and solution.
A . . . . . . . . computer requests web pages from the server.
A. Server
B. Host
C. Client
D. Router
Select an option to see the answer and solution.
A nested selection structure can be contained in . . . . . . . . of another selected structure.
A. Only in the truth part
B. Only in the false part
C. Either in truth or in false part
D. Both in truth and in false part
Select an option to see the answer and solution.
What is the correct syntax to designate a default button?
A. Form.default=button1
B. Form.defaultButton=button1
C. Form.AcceptButton=button1
D. Form.focused=button1
Select an option to see the answer and solution.
The position of an item in a list box depends on which of the following property of the value stored in the list box's?
A. Unsorted property
B. Sorted property
C. Descending Property
D. Ascending property
Select an option to see the answer and solution.
. . . . . . . . displays the commands that are required to build an application. it is used to display the menus of the particular application
A. mdi
B. sdi
C. menu bar
D. toolbox
Select an option to see the answer and solution.
Which of the following statements is false?
A. A class can have only one constructor
B. A class can have multiple constructors
C. An object created from a class is referred to as instance of the class
D. An instance of a class is considered an object
Select an option to see the answer and solution.