VB NET set 16

Que: 151. Which of the following property of Array class in VB.NET gets the rank (number of dimensions) of the Array?
a. Rank
b. LongLength
c. Length
d. None of the above
Que: 152. Which of the following block of VB.NET identifies a place to catch an exception with an exception handler at the place in a program where you want to handle the problem?
a. Try
b. Catch
c. Finally
d. Throw
Que: 153. Which of the following accesss modifier specifies that one or more declared member variables refer to an instance of a class that can raise events?
a. Widening
b. WithEvents
c. WriteOnly
d. ReadOnly
Que: 154. Which of the following statement declares a user-defined event?
a. Event
b. Delegate
c. Operator
d. Property
Que: 155. Which of the following Collection class of VB.NET represents an array of the binary representation using the values 1 and 0?
a. Queue
b. BitArray
c. SortedList
d. Stack
Que: 156. Which of the following converts the expression to Boolean data type in VB.NET?
a. CBool(expression)
b. CByte(expression)
c. CChar(expression)
d. CDate(expression)
Que: 157. Which of the following converts the expression to SByte data type in VB.NET?
a. CObj(expression)
b. CSByte(expression)
c. CShort(expression)
d. CSng(expression)
Que: 158. Which of the following accesss modifier specifies that a property or procedure redeclares one or more existing properties or procedures with the same name?
a. NotOverridable
b. Optional
c. Out
d. Overloads
Que: 159. Which of the following statement declares an enumeration and defines the values of its members?
a. Dim
b. Const
c. Enum
d. Class
Que: 160. Which of the following property of Array class in VB.NET checks whether the Array is readonly?
a. IsFixedSize
b. IsReadOnly
c. Length
d. None of the above