What is the output of the following program segment?
```
Dim nums(8) As Integer
Dim total As Double = 0
For i As Integer = 0 To 8
nums(i) = i
Next
For k As Integer = 1 To 4
total += 10 ^ nums(k)
Next
txtBox.Text = CStr(total)
```
(A) 10000
(B) 11110
(C) 1110
(D) 0
(B) 11110
Computer Science & Information Technology
You might also like to view...
An Alice array can store an arbitrary number of references to any Alice type.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology
A database administrator must ____________ monitor each SQL Server instance to minimize the risk of service disruption.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology