1. 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 };
Answers: • Collection Class must implement System.Collections.Generic.ICollection<T>
or
• Each of the Items in the Initializer List will be passed to the Add<T>(T item) method
2. Which of the following types guarantee atomic reads and writes?
Answers: • int or • float
3. Which of the following accurately describes the class structure when implementing an ASP.Net page which uses the CodeFile attribute?
Answers: • The actual instantiated class is dynamically created and has a base class defined in the CodeFile.
4. Which of the following does Event Bubbling allow composite controls to perform?
Answers: • Translate control unhandled control events into exceptions.
5. With which of the following are Declarative Databinding expressions delimited?
Answers: • <%# %>
6. Which of the following are true of using ADO.NET DataSets and DataTables?
Answers: • The DataSets and DataTables objects requires continuous connection to the database
CollectionClass<int> numbers = new CollectionClass<int> { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
Answers: • Collection Class must implement System.Collections.Generic.ICollection<T>
or
• Each of the Items in the Initializer List will be passed to the Add<T>(T item) method
2. Which of the following types guarantee atomic reads and writes?
Answers: • int or • float
3. Which of the following accurately describes the class structure when implementing an ASP.Net page which uses the CodeFile attribute?
Answers: • The actual instantiated class is dynamically created and has a base class defined in the CodeFile.
4. Which of the following does Event Bubbling allow composite controls to perform?
Answers: • Translate control unhandled control events into exceptions.
5. With which of the following are Declarative Databinding expressions delimited?
Answers: • <%# %>
6. Which of the following are true of using ADO.NET DataSets and DataTables?
Answers: • The DataSets and DataTables objects requires continuous connection to the database