PrepAway - Latest Free Exam Questions & Answers

Which two actions should you perform?

You are developing an application that includes the following code segment. (Line numbers are
included for reference only.)

The GetCustomers() method must meet the following requirements:
Connect to a Microsoft SQL Server database.
Populate Customer objects with data from the database.
Return an IEnumerable<Customer> collection that contains the populated Customer objects.
You need to meet the requirements.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose
two.)

PrepAway - Latest Free Exam Questions & Answers

A.
Insert the following code segment at line 17:
while (sqlDataReader.GetValues())

B.
Insert the following code segment at line 14:
sqlConnection.Open();

C.
Insert the following code segment at line 14:
sqlConnection.BeginTransaction();

D.
Insert the following code segment at line 17:
while (sqlDataReader.Read())

E.
Insert the following code segment at line 17:
while (sqlDataReader.NextResult())

Explanation:
SqlConnection.Open – Opens a database connection with the property settings specified by the
ConnectionString.
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.open.aspx
SqlDataReader.Read – Advances the SqlDataReader to the next record.
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldatareader.read.aspx

One Comment on “Which two actions should you perform?


Leave a Reply