If Option Strict is set to On, which of the following statements assigns the sum of two

Question:

If Option Strict is set to On, which of the following statements assigns the sum of two Integer variables to the Text property of the lblTotal control?
a. lblTotal.Text = (intN1 + intN2).ToString
b. lblTotal.Text = intN1.ToString + intN2.ToString
c. lblTotal.Text = intN1 + intN2.ToString
d. lblTotal.Text = ToString(intN1 + intN2)

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: