What numbers are displayed in the list box by the following program segment?
```
Dim numbers() As Integer = {5, 79, 8, 33, 27}
Dim query = From number in numbers
Let formattedNum = number.ToString("N0")
Order By formattedNum Ascending
Select formattedNum
lstBox.DataSource = query.ToList
lstBox.SelectedIndex = Nothing
```
(A) 5, 8, 27, 33, 79
(B) 79, 33, 27, 8, 5
(C) 27, 33, 5, 79, 8
(D) 5, 79, 8, 33, 27
(C) 27, 33, 5, 79, 8
Computer Science & Information Technology
You might also like to view...
Currently ________ supplies processors for Apple computers
Fill in the blank(s) with correct word
Computer Science & Information Technology
A shot is a piece of the story that is told with the camera in multiple positions.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology