Given a string (strWord) entered into an InputBox, what statement will always return the first letter of that string?
1. chrFirstLetter = chrFirstLetter.Chars(0)2. chrFirstLetter = strWord.Chars(0)3. chrFirstLetter = strWord.Chars = 04. chrFirstLetter = strWord.Chars(1)

Respuesta :

CPED

Answer:

Option 2. chrFirstLetter = strWord.Chars(0)

is the correct answer.

Explanation:

  • strWord is the given string that will be entered by the user.
  • Chars() represent the characters of the string.
  • Chars(0) will extract the first word from the string because 0 is given as index to the string.
  • the first letter of the string when extracted will get stored into the variable chrFirstLetter.

All other option are wrong as they fetch the wrong result.

I hope it will help you!