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...
Sites like MediaFire and ADrive offer free storage for large files such as ________
A) videos B) word documents C) PDFs D) GIFs
Computer Science & Information Technology
The ________ function capitalizes the first letter of each word in a string
Fill in the blank(s) with correct word
Computer Science & Information Technology