You are developing an application that includes a class named Order. The application will store a collection of Order objects.
The collection must meet the following requirements:
-> Use strongly typed members.
-> Process Order objects in first-in-first-out order.
-> Store values for each Order object.
-> Use zero-based indices.
You need to use a collection type that meets the requirements.
Which collection type should you use?
Answer : A
Explanation:
Queues are useful for storing messages in the order they were received for sequential processing. Objects stored in a Queue<T> are inserted at one end and removed from the other.
References:
http://msdn.microsoft.com/en-us/library/7977ey2c.aspx
You are developing an application. The application calls a method that returns an array of integers named employeeIds. You define an integer variable named employeeIdToRemove and assign a value to it. You declare an array named filteredEmployeeIds.
You have the following requirements:
-> Remove duplicate integers from the employeeIds array.
Sort the array in order from the highest value to the lowest value.
Answer : C
You are developing an application that includes the following code segment. (Line numbers are included for reference only.)
Answer : BD
Explanation:
-> SqlConnection.Open - Opens a database connection with the property settings specified by the ConnectionString.
-> SqlDataReader.Read - Advances the SqlDataReader to the next record.
References:
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.open.aspx http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldatareader.read.aspx
DRAG DROP -
You are developing a custom collection named LoanCollection for a class named Loan class.
You need to ensure that you can process each Loan object in the LoanCollection collection by using a foreach loop.
How should you complete the relevant code? (To answer, drag the appropriate code segments to the correct locations in the answer area. Each code segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)
Select and Place:
Answer :
You are developing an application that uses the Microsoft ADO.NET Entity Framework to retrieve order information from a Microsoft SQL Server database. The application includes the following code. (Line numbers are included for reference only.)
Answer : A
Explanation:
-> For the requirement to use an OrderDate value other than null use:
OrderDate.Value != null -
-> For the requirement to use an OrderDate value for this year or a later year use:
OrderDate.Value>= year -