VB NET set 15

Que: 141. Which of the following accesss modifier allows you to pass an arbitrary number of arguments to the procedure?
a. Overridable
b. Overrides
c. ParamArray
d. Partial
Que: 142. Which of the following accesss modifier indicates that a conversion operator (CType) converts a class or structure to a type that can hold all possible values of the original class or structure?
a. Widening
b. WithEvents
c. WriteOnly
d. ReadOnly
Que: 143. Which of the following operator uses short-circuit evaluation to conditionally return one of two values?
a. If
b. Await
c. GetType
d. Function Expression
Que: 144. Which of the following Collection class of VB.NET represents a last-in, first out collection of object?
a. ArrayList
b. Hashtable
c. SortedList
d. Stack
Que: 145. Which of the following is a true about Object in VB.NET?
a. Object variable size is 4 bytes on 32-bit platform
b. Object variable size is 8 bytes on 64-bit platform
c. Any type can be stored in a variable of type Object
d. All of the above
Que: 146. Which of the following converts the expression to Decimal data type in VB.NET?
a. CDbl(expression)
b. CDec(expression)
c. CInt(expression)
d. CLng(expression)
Que: 147. Which of the following accesss modifier specifies that the type is covariant?
a. NotOverridable
b. Optional
c. Out
d. Overloads
Que: 148. Which of the following accesss modifier indicates that a class or structure declaration is a partial definition of the class or structure?
a. Overridable
b. Overrides
c. ParamArray
d. Partial
Que: 149. Which of the following statement declares the operator symbol, operands, and code that define an operator procedure on a class or structure?
a. Sub
b. Declare
c. Operator
d. Property
Que: 150. Which of the following operator is applied to an operand in an asynchronous method or lambda expression to suspend execution of the method until the awaited task completes?
a. AddressOf
b. Await
c. GetType
d. Function Expression