Given the following partial program, how many times will the statement lstBox.Items.Add(j + k + m) be executed?

```
For j As Integer = 1 To 4
For k As Integer = 1 To 3
For m As Integer = 2 To 10 Step 3
lstBox.Items.Add(j + k + m)
Next
Next
Next
```
(A) 24
(B) 60
(C) 36
(D) 10
(E) None of the above


(C) 36

Computer Science & Information Technology

You might also like to view...

Inside the solution folder, the ____________ contains various files related to the project.

a. project folder b. solution file c. source folder d. system folder

Computer Science & Information Technology

Which will open the input box for the Parameter query?

A) Switching the report to Layout View only B) Neither switching the report to Layout View or Print Preview will achieve the desired effect. C) Switching the report to Print Preview only D) Switching the report to Layout View or Print Preview

Computer Science & Information Technology

Creating a new form using the Form Tool, all fields and all records from an existing table or query are used

Indicate whether the statement is true or false

Computer Science & Information Technology

Which of the following is not a normal step in preparing to create a macro?

A) Practice recording the macro. B) Identify the task you want to record. C) Decide on a meaningful name for the macro. D) Determine what template the macro will be stored in.

Computer Science & Information Technology