Solved

The TblItems Table Contains a Numeric Field Named Price

Question 6

Multiple Choice

The tblItems table contains a numeric field named Price.Which of the following statements finds the lowest price for an item and assigns the result to the dblLowPrice variable?


A) Dim dblLowPrice As Double =Min item In Items.DataSet.tblItemsSelect item.Price
B) Dim dblLowPrice As Double =Aggregate item In Items.DataSet.tblItemsSelect item.Price Into Min()
C) Dim dblLowPrice As Double =Select Min item In Items.DataSet.tblItems
D) Dim dblLowPrice As Double =Select Aggregate item In Items.DataSet.tblItemsInto Min()

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions