DotNet 3.5 using VB Test
By which contract are the WS-Addressing action and reply action elements of the soap envelope controllable when Windows Communication Foundation is used?
Custom non-fatal exceptions should be derived from:
Determining the availability of sufficient memory for an operation can be accomplished by:
Given the following code, what will be the output when Test() is called? Delegate Function SampleDelegate(ByVal s As String) As String <Extension()> _ Public Function ExtensionTest(ByVal s As ...
Given the following code, which calls are valid ways to add the elements of a string array to a List(Of Strings)? Dim values() As String = {"1", "2", "3", "4"} Dim valueList As New List(Of...
Given the following code, which of the following are syntactically correct? <Extension()> Public Function AppendTest(ByVal s As String, ByVal suffix As String) Return s & suffix End Function
Identify the syntactically correct LINQ query or queries, assuming dt is a DataTable
In which of the following types of applications can Windows Workflow Foundation be used?
In which of the following ways do structures differ from classes?
Of which elements does Generics allow parameterization by type?
Public Class Sample Public Sub New(ByVal x As Integer) End Sub End Class In the above code, in which of the following can other class constructors directly access the provided constructor?
The default number of threads per processor in the System.Threading.ThreadPool class under version 3.5 of the Framework is?
The framework provides three different timer classes. Select the answer that properly matches the class with the listed characteristic.
The output generated by the following code will be? Dim t As String = "This Is a Test" t.Replace("T", "?") Console.WriteLine(t)
To which contract is the SessionMode property to disallow, require, or permit applied when Windows Communication Foundation is used?
To which of the following can System.IO.IsolatedStorage not be scoped?
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 result of the following code? Console.WriteLine(CBool(If(1>2, "True", "False")))
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? = If(b1 AndAlso b2, b1, b2)
When aggregating data, LINQ is:
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?
When using version 3.5 of the framework in applications which emit dynamic code, which of the following are true?
When Windows Communication Foundation is used to develop a Web Service, which of the following are supported?
Which access limitation is there in a class member declared "Protected Friend"?
Which features that are not supported in the System.TimeZone class does the System.TimeZoneInfo class provide?
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 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 anonymous types?
Which of the following are true about BackgroundWorker?
Which of the following are true about declarative attributes?
Which of the following are true about Extension methods?
Which of the following are true about Nullable types?
Which of the following are true about System.GC under version 3.5 of the Framework?
Which of the following are true about System.Security.Cryptography under version 3.5 of the framework
Which of the following are true about using ADO.NET DataSets and DataTables?
Which of the following are true of ADO.NET?
Which of the following are true of the System.Text.StringBuilder class?
Which of the following are true regarding System.Web.Mail and System.Net.Mail namespaces?
Which of the following are true regarding the System.Collections.Generic.HashSet(Of T) class
Which of the following are true with respect to the standard implementation of Garbage Collection?
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 a class Sample?
Which of the following characteristics are found in a Query expression?
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 present in the DateTime type?
Which of the following do the advantages of Lambda Expressions over Anonymous methods include?
Which of the following does System.IO.Pipes namespace provide?
Which of the following is true about VB generics?
Which of the following is most appropriate when using an implicitly typed array?
Which of the following is not an unboxing conversion?
Which of the following is true regarding the System.DateTimeOffset structure?
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 operators can be overloaded?
Which of the following scenarios are applicable to Window Workflow Foundation?
Which of the following statements do Expression Trees fit best?
Which of the following types guarantee atomic reads and writes?
Which of the following will execute without error? Public Class Fruit End Class Public Class Apple Inherits Fruit End Class
With which class is the task of mapping a specific point in time into units, such as weeks, months, and years accomplished?
Within Windows Workflow Foundation, Compensating Actions are used for: