ASP.Net 3.5 using VB Test
By which contract are the WS-Addressing action and reply action elements of the soap envelope controllable when the Windows Communication Foundation is used?
By which of the following can the .NET class methods be included in .aspx files?
Determining the availability of sufficient memory for an operation can be accomplished by:
Given the following code, which calls are 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 New ...
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 ...
Identify the syntactically correct LINQ query or queries, assuming dt is a DataTable
In order to enable AJAX Functionality, which control is placed on the page?
In order to use the AJAX AuthenticationSErvice class, which of the following must be true?
In the following example,by which technique can the method Test in the derived class Cat access the implementation of MakeNoise in the base class? Public Class Animal Public Overridable Sub Ma...
In which file are Predefined Client Side Validation Scripts defined?
In which of the following ways do Structures differ from classes?
The earliest event in which all viewstate information has been restored is:
The earliest event where one can be assured all child controls exist is:
The rights of which Windows Account does anonymous Web Site access use by default?
Via which of the following is ViewState maintained by default?
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)
What is the value of r after the following code is executed? Dim f As Func(Of Integer, Boolean) = Function(x) (x + 2) > 7 Dim r = f(7)
When aggregating data, LINQ is:
When using a JavaScript timer control in conjunction with UpdatePanels, which of the following statements are true?
When using an implicitly typed array, which of the following is most appropriate?
When using asynchronous partial updates with an UpdatePanel, which of the following are true?
When using Cascading Style Sheets (CSS) to format output, which of the following is/are true?
When Windows Communication Foundation is used to develop a Web Service, which of the following are supported?
When Windows Communication Foundation is used, the SessionMode property to disallow, require, or permit is applied to which contract?
Where should an instance of an object which provides services to all users be stored?
Where should information about a control created at design time be stored?
Which directive allows the utilization of a custom web control in an ASP.NET page?
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 accurately describes the class structure when implementing an ASP.Net page which uses the CodeFile attribute?
Which of the following are common methods of supplying "Help" information to an ASP.NET application?
Which of the following are included in the advantages of Lambda Expressions over Anonymous methods?
Which of the following are performed to fully debug an ASP.NET Application running on the same machine as the debugger?
Which of the following are the goals of the Windows Communication Foundation?
Which of the following are true about anonymous types?
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 of ADO.NET?
Which of the following are true of the System.Text.StringBuilder class?
Which of the following are true of using ADO.NET DataSets and DataTables?
Which of the following are true regarding System.Threading.ReaderWriterLockSlim?
Which of the following are true regarding validation in an ASP.NET application?
Which of the following are true when using a POST command to access a WebService method?
Which of the following are valid mechanisms for adding an event handler for Public Event SomeEvent() on class Sample?
Which of the following can be used to control caching within an ASP.NET application?
Which of the following can be used to preserve state information?
Which of the following can one use to detect the user's current language?
Which of the following can you do when deleting a DataRow from the DataRowCollection of a DataTable?
Which of the following characteristics does a LINQ query expression should have?
Which of the following conditions can trigger the automatic recycling of an ASP.NET application hosted in IIS?
Which of the following controls allows the use of XSL to transform XML content into formatted content?
Which of the following differentiates a UserControl from a Custom Server control?
Which of the following does Event Bubbling allow composite controls to perform?
Which of the following elements can be adjusted when using the ProcessModel element of the Machine.Config file?
Which of the following events should be used for assigning a Theme dynamically to a page?
Which of the following is true about VB generics?
Which of the following is applicable when using Secure Socket Level communications?
Which of the following is not an unboxing conversion?
Which of the following is true regarding the System.DateTimeOffset structure?
Which of the following is used to remove a cookie from a client machine?
Which of the following is/are true regarding the use of Authentication to control access to the HTML file (.htm .html)?
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 statements are true about Passport Authentication?
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 be executed 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?
With which of the following are Declarative Databinding expressions delimited?