DotNet 2.0 using VB Test
An executable code that will be dynamically created within a running application__________.
Custom non-fatal exceptions should be derived from:
Determining the availability of sufficient memory for an operation can be accomplished by:
Elements in a System.Collections.Specialized.OrderedDictionary are:
Given the following code, which calls will be valid ways to add the elements of a string array to a List(Of String)? Dim values() As String = {"1", "2", "3", "4"} Dim valueList As N...
In which of the following ways do structures differ from classes?
Of which elements does Generics allow parameterization by type?
Parameterized Properties in VB are__________.
Public Class Sample Public Sub New(ByVal x As Integer) End Sub End Class In the above code, which of the following other class constructors can directly access the provided constructor?
The framework provides three different timer classes. Select the answer that properly matches the class with the listed characteristic.
The term Encapsulation is most commonly used to mean:
To which of the following can System.IO.IsolatedStorage not be scoped?
Transactions initiated in which of the following are supported by System.Transactions infrastructure?
What does the AndAlso operator do?
What does the OrElse operator do?
What is the result of Console.WriteLine("{0}:{1}:{2}", CInt(2.5), CInt(1.5), Fix(1.5))?
What is the value of b3 after the following code is executed? Dim b1 As Boolean? = True Dim b2 As Boolean? = Nothing Dim b3 As Boolean? = IIf(b1 AndAlso b2, b1, b2)
What output will be generated by the following code? Dim sb As New StringBuilder(10) sb.AppendFormat("1234567890123") Console.WriteLine(sb.Capacity)
What will be the output generated by the following code? Dim t As String = "This Is a Test" t.Replace("T", "?") Console.WriteLine(t)
When Deleting a DataRow from the DataRowCollection of a DataTable, you can:
When using the Demand method of System.Security.IPermission, which of the following will occur?
Which access limitation does a class member declared Protected Friend have?
Which method calls will compile the following? Private Sub Sample(ByVal number As Integer, Optional ByVal bool As Boolean = True) End Sub
Which of the following is a primary characteristic of System.Xml.XmlDataDocument?
Which of the following are characteristics of the System.Threading.Timer class?
Which of the following are not valid namespaces in the .NET framework?
Which of the following are required to be true by objects which are going to be used as keys in a System.Collections.HashTable?
Which of the following are true about BackgroundWorker?
Which of the following are true about declarative attributes?
Which of the following are true about event handling?
Which of the following are true about namespaces and assemblies?
Which of the following are true about Nullable types?
Which of the following are true about statements?
Which of the following are true about using ADO.NET DataSets and DataTables?
Which of the following are true about using the System.Messaging.MessageQueue class?
Which of the following are true of ADO.NET?
Which of the following are true of parameters?
Which of the following are true of the System.Text.StringBuilder class?
Which of the following are true when comparing built in types for equality?
Which of the following are true with respect to the standard implementation of Garbage Collection?
Which of the following are valid as the underlying type for an enumeration?
Which of the following are valid assignments?
Which of the following are valid means of reading all data from a file into a string?
Which of the following are valid mechanisms for adding an event handler for Public Event SomeEvent() on the class Sample?
Which of the following can one perform to create a System.Type instance for a given specialization of a generic?
Which of the following can an interface NOT contain?
Which of the following can Interfaces contain?
Which of the following characteristics do classes in the System.Drawing namespace such as Brush,Font,Pen, and Icon share?
Which of the following characteristics is found in overloaded methods?
Which of the following characteristics is found in The DateTime type?
Which of the following code samples will cause a compilation error?
Which of the following conditions are true regarding System.Diagnostics.Trace
Which of the following does NOT apply to XCOPY deployment?
Which of the following encodings are NOT supported by classes in the System.Text namespace?
Which of the following is true about VB generics?
Which of the following is NOT a requirement for an application to be certified in the "Certified for Windows Program"
Which of the following is not a standard service behavior supported by the System.ServiceProcess.ServiceController class members?
Which of the following is not a valid attribute for impacting serialization?
Which of the following is not a valid value for DataRowState?
Which of the following is not an unboxing conversion?
Which of the following is NOT part of an assembly?
Which of the following is true about exceptions?
Which of the following mechanisms are not suitable for returning a single row from a DataTable containing a large number of records?
Which of the following operations can NOT be performed inside a catch block?
Which of the following operators can be overloaded?
Which of the following types are derived from System.Reflection.MemberInfo?
Which of the following types guarantee atomic reads and writes?
Which of the following will be executed without error? Public Class Fruit End Class Public Class Apple Inherits Fruit End Class
Which System.Remoting class is used to transfer information across an AppDomain boundary?
With which class is the task of mapping a specific point in time into units, such as weeks, months, and years accomplished?