What will be the output when TruncateSum is used in the following lines of code?

```
Dim num1, num2, num3 As Double
num1 = 3.5
num2 = 6.75
num3 = 1
TruncateSum(num1, num2, num3)
```
Consider the following Sub procedure.
```
Sub TruncateSum(var1 As Double, var2 As Double, var3 As Double)
txtBox.Text = CStr(Int(var1 + var2 + var3))
End Sub
```
(A) 10
(B) 12
(C) 0
(D) 11


(D) 11

Computer Science & Information Technology

You might also like to view...

An effective filename should identify the types of files stored in the folder

Indicate whether the statement is true or false

Computer Science & Information Technology

Internet color has a maximum range of _______________colors.

a. 100 b. 256 c. one million d. ten million

Computer Science & Information Technology

How are Windows and Macintosh operating systems similar? How are they different?

What will be an ideal response?

Computer Science & Information Technology

You can move the ____________________ slider in the Format Background dialog box by pressing the RIGHT ARROW or LEFT ARROW to move the slider in one-percent increments.

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

Computer Science & Information Technology