Choose a topic to test your knowledge and improve your VB.Net skills
If the elements in two arrays are related by their subscripts, the arrays are called as ______arrays.
The strStates and strCapitals arrays are parallel arrays. If Illinois is stored in the second element in the strStates array, where is its capital (Springfield) stored?
A __________ resembles a table.
We can determine number of elements in two-dimensional array by ______
The _____________ in a two-dimensional array specifies the elements row and column position.
Each element in a two-dimensional array is identified by a unique combination of _______
The subscripts are _________ than the row and column in which the element is located.
To traverse two dimensional array you require ________________ loops.
Which of the following declares a two-dimensional array that has three rows and four columns?
The intSales array is declared as follows: Dim intSales(,) As Integer = {{1000, 1200, 900, 500, 2000}, {350, 600, 700, 800, 100}}. The intSales(1, 3) = intSales(1, 3) + 10 statement will ______
Variables declared using a structure is known as __________
You refer to the structure variable by its ______
You refer to the member variable by preceding its name with the name of the _______ in which it is defined.
Programmers use _____ when they need to pass a group of related variables.
Programmers use ________ when they need to store related items in an array, even though the members have different data type.
Which statement is used to create a user-defined data type?
A structure variable named address contains a member variable named strStreet. Which of the following statements assigns the string “Maple” to the member variable?
An array is declared using the statement Dim inventory(4) As Product. Which of the following statements assigns the number 100 to the intQuantity member variable contained in the last array element?
An application uses a structure named Employee. Which of the following statements declares a five-element array of Employee structure variables?
In most applications, the code to define a user-defined data type is entered in the form’s.
Reading data from a file is referred to as _______
Writing data to a file is referred to as ________
The file to which data is write is referred to as _______
Files that are read by computer are called as ______
Files that read and write in consecutive order are known as _____
Files that contain lines of text are known as _______
Programmers refer to the sequence of character as _________
In Visual Basic, you use _________ to write a stream of characters.
__________ is used to open a sequential access file for output.
________ is used to open the sequential file access for append.
______ is a programming language that allows the programmer to use objects to accomplish his goals.
Each object used in a object oriented programming is created from ______
An object is the ________ of the class.
A _________ variable is the instance of the String class.
_____ are the characteristics that describe the object.
_____ are operations that the object is capable of performing.
______ are the actions to which an object can respond.
An object’s _______________ include methods and events.
A class ______________ all the behavior and attributes of an object.
Objects are ____________ from a class.
Class is defined using _______
The convention is to use _____ case for classname.
Objects are represented by _____________ variables and ______________ properties.
The behavior are represented by _______
After defining a class you can instantiate one or more _____
The computer creates the object when it processes the statement containing ____________ keyword.
The class statement groups _______________ item in one unit.
The name of the class file ends with ______
A constructor is a ______
Which of the following statements is false?