Q.1.
………. is a collection of Objects
Q.2.
………… method is used to delete items from a list box.
Q.3.
To repeat the statement again and again we use …….
Q.4.
……….. is an action recognized by a form or the control.
Q.5.
A ………. is a tool you use to create objects on a Visual Basic form.
Q.6.
An ………..is a type of user interface element you create on a Visual Basic form by using a toolbox control.
Q.7.
……….. is a meaningful name that takes the place of a number or string.
Q.8.
The body of a for…Next loop in Visual Basic will terminate once the condition is false.
Q.9.
When you press the button load event will trigger.
Q.10.
TextBox is used to take input and edit the text.
Q.11.
Using RadioButton you can select multiple options.
Q.12.
THIS PROGRAM WILL GIVE OUTPUT AS Dim i, n, m As Single i = Val(TextBox1.Text) n = Val(TextBox2.Text) For m = i To n Dim a As Integer a = i * m ListBox1.Items.Add(i & "*" & m & "=" & a) Next End Sub End Class
Q.13.
Visual Basic is a tool that allows you to develop application in…………
Q.14.
. ………….. Combines the features of the text box and list box
Q.15.
………… is an example for control
Q.16.
A Boolean datatype can store……….bytes.
Q.17.
Classify the data type that must be held in each variable.INT - for integerDOUBLE - for doubleSTRING - for stringQ: LOCKER NUMBER
Q.18.
What data type would you use to return a value of true or false?
Q.19.
This is a blank form that shows automatically when starting a Visual Basic program.
Q.20.
Which of the following is a relational operator that means “Less than or Equal to”?