What numbers are displayed in the list box by the following program segment?

``` What numbers are displayed in the list box by the following program segment?Dim numbers() As Double = {.5, 1, 2, 2.5}
Dim query = From number in numbers
Where number < 2
Let FormattedPer = number.ToString("P")
Select FormattedPer
For Each percent In query
lstBox.Items.Add(percent)
Next

```
(A) .5 and 1
(B) 50% and 100%
(C) 50.00%, 100.00%, 200.00%, 250.00%
(D) 50.00% and 100.00%

(D) 50.00% and 100.00%

Computer Science & Information Technology

You might also like to view...

Which task is not typically performed by a network administrator?

a. developing network usage policies b. installing networks c. planning for disaster recovery d. web programming

Computer Science & Information Technology

Moving records from one table to another can be accomplished with the combination of what two types of queries?

A) Append and update B) Append and delete C) Append and make table D) Append and select

Computer Science & Information Technology