Examlex

Solved

What Words Are Displayed in the List Box by the Following

question 17

Multiple Choice

What words are displayed in the list box by the following program segment?
Dim dimensions As String = {"width", "height", "depth"}
Dim query = From dimension in dimensions
Order By dimension.Length Descending, dimension Ascending
Select dimension
lstBox.DataSource = query.ToList
lstBox.SelectedIndex = Nothing


Definitions:

Related Questions