What will be contained in the Text property of the lblResult Label object after executing the following

Question:

What will be contained in the Text property of the lblResult Label object after executing the following code?

```

Dim strPhrase As String strPhrase = "Everyone should know how to code a computer;"

strPhrase += " because it teaches "

strPhrase+= "you how to think."

strPhrase = strPhrase.Trim()

lblResult.Text=strPhrase

```

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

Step by Step Answer:

Question Posted: