What is the value of intTotal after the following code executes?
```
Dim intNumber1 As Integer = 2
Dim intNumber2 As Integer = 3
Dim intTotal As Integer
intTotal = AddSquares(intNumber1, intNumber2)
Function AddSquares(ByVal intA As Integer, ByVal intB As Integer) As Integer
intA = intA * intA
intB = intB * intB
Return intA + intB
intA = 0
intB = 0
End Function
```
a. 0
b. 5
c. 10
d. 13
d. 13
You might also like to view...
After creating a gradient rectangle like the one in the accompanying figure, you can use the ____ Tool to curve the segments between anchor points, for example.
a. Subselection b. Selection c. Pen d. Anchor
The dot operator has a lower precedence than the indirection operator.
Answer the following statement true (T) or false (F)
A(n) ____________________ is a short paragraph that describes the content and features of the website.
Fill in the blank(s) with the appropriate word(s).
By default, objects in Illustrator are created with ____ opacity.
A. 0% B. 50% C. 75% D. 100%