What will be the output of the following program when the button is clicked on?

```
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim word As String
word = "progression"
Strange(word)
End Sub
Sub Strange(var As String)
txtBox.Text = var.Substring(CInt(Int(var.Length / 2)), 1)
End Sub
```
(A) progr
(B) r
(C) e
(D) progre

(C) e

Computer Science & Information Technology

You might also like to view...

By normalizing to ________, you are eliminating all functional dependencies

Fill in the blank(s) with correct word

Computer Science & Information Technology

Consider the following function and code segment.

``` void One( int first, int & second ) { first = 17; second = first + 1; } int main() { // other code ... int j = 4; int k = 3; One(j, k); // other code .. ``` a) j == 4, k == 3; b) j == 17, k == 18; c) j == 4, k == 18; d) j == 17, k == 3;

Computer Science & Information Technology