ASP.Net 3.5 using C# Test
By which of the following can the .NET class methods be included in .aspx files?
Custom non-fatal exceptions should be derived from:
Determining the availability of sufficient memory for an operation can be accomplished by:
Given the code below, which items will cause a compilation error? static void F1(params int [] y) { } static void Sample() { int [] j = new Int32[3]; List k = new List(); // ANSWER GOES HERE }
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 which file are Predefined Client Side Validation Scripts defined?
In which of the following events, the final changes to the contents of the page or its controls could be made.
The default number of threads per processor in the System.Threading.ThreadPool class under version 3.5 of the Framwork is:
The earliest event in which all viewstate information has been restored is:
The following are the two statements regarding the DataRow from the DataRowCollection of a DataTable Statement X: Use the DataRowCollection.Remove method to immediately delete the row. Statement Y...
The following are two statements related to System.DateTimeOffset namespace. Statement X: DateTimeOffset values can be converted to DateTime values and vice versa. Statement Y: DateTimeOffset does...
The output generated by the following code will be: string t = @"ThisIsaTest"; Response.Write(t);
The rights of which Windows Account does anonymous Web Site access use by default?
To which contract is the SessionMode property to disallow, require, or permit applied when Windows Communication Foundation is used?
To which of the following do automatic properties refer?
Via which of the following is ViewState maintained by default?
What is the proper declaration of a method which will handle the following event? Class MyClass { public event EventHandler<MyArgs> MyEvent; }
What will be the impact of using implicitly typed local variables as in the following example? var sample = "Hello World";
When using a DataReader to access the results of a Database operation, which of the following is true?
When using a JavaScript timer control in conjunction with UpdatePanels, which of the following statements are true?
When using an automatic property, which of the following statements is true?
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?
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 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 required to be true by objects which are going to be used as keys in a System.Collections.HashTable?
Which of the following are the goals of the Windows Communciation Foundation?
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.Security.Cryptography under version 3.5 of the framework?
Which of the following are true of using ADO.NET DataSets and DataTables?
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<T> class?
Which of the following attributes of the ProcessModel element of the Machine.Config file, is used to specify the level of authentication for DCOM security?
Which of the following can be used to control caching within an ASP.NET application?
Which of the following can be used to preserve application state information?
Which of the following can one use to detect the user's current language?
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 does using Initializer Syntax with a collection as shown below require? CollectionClass<int> numbers = new CollectionClass<int> { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
Which of the following events should be used for assigning a Theme dynamically to a page?
Which of the following is false about declarative attributes?
Which of the following is false about System.GC under version 3.5 of the .NET Framework?
Which of the following is not a characteristic, that a Query expression should have?
Which of the following is not an unboxing conversion?
Which of the following is true about C# generics?
Which of the following is used to remove a cookie from a client machine?
Which of the following is/are applicable while using Secure Socket Level communications?
Which of the following is/are true regarding the use of Authentication to control access to the HTML file (.htm or .html)?
Which of the following is/are true regarding validation in an ASP.NET application?
Which of the following items are recommended when using XML comments to generate documentation?
Which of the following statements are applicable in LINQ to SQL?
Which of the following statements is false about Passport Authentication?
Which of the following types guarantee atomic reads and writes?
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?