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

Computer Science & Information Technology

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

Computer Science & Information Technology

The dot operator has a lower precedence than the indirection operator.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

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).

Computer Science & Information Technology

By default, objects in Illustrator are created with ____ opacity.

A. 0% B. 50% C. 75% D. 100%

Computer Science & Information Technology