What will be displayed by the following program when the button is clicked?

```
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim s As Double
s = 0
For k As Integer = 1 To 5
If k / 2 = Int(k / 2) Then
s += k
End If
Next
txtBox.Text = CStr(s)
End Sub
```
(A) 12
(B) 9
(C) 15
(D) 6


(D) 6

Computer Science & Information Technology

You might also like to view...

What exception type does the following program throw?

``` public class Test { public static void main(String[] args) { int[] list = new int[5]; System.out.println(list[5]); } }``` a. ArithmeticException b. ArrayIndexOutOfBoundsException c. StringIndexOutOfBoundsException d. ClassCastException e. No exception

Computer Science & Information Technology

Of all the Photoshop panels, the Brush panel is arguably the most multi-faceted and complex.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

A ____ is the DNS server that is the main administrative server for a zone.

A. primary DNS server B. secondary DNS server C. host DNS server D. stub DNS server

Computer Science & Information Technology

Speaker recognition systems employee three styles of spoken input, including:

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology