How many lines of output are produced by the following program segment?

```
For i As Integer = 1 To 3
For j As Integer = 1 To 3
For k As Integer = i to j
lstBox.Items.Add('Programming is fun.")
Next
Next
Next
```
(A) 8
(B) 9
(C) 10
(D) 1


(C) 10

Computer Science & Information Technology

You might also like to view...

When using ________ mode, you take several pictures in quick succession by holding down the shutter button

Fill in the blank(s) with correct word

Computer Science & Information Technology

What does Microsoft strongly recommend you configure your computer to automatically download and install?

A) Windows Defender B) Windows Updates C) Windows Help D) Windows Firewall

Computer Science & Information Technology

What are the two different EtherChannel protocols supported by most modern Cisco switches?

A) PAgP B) LACP C) LAPB D) PPTP

Computer Science & Information Technology

If a class has only a default constructor, you must call the constructor using the keyword ____ for each declared array element.

A. default B. new C. first D. object

Computer Science & Information Technology