Multiple choice technology

IS_SPACES returns FALSE for an empty string?

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

IS_SPACES checks if a string contains only whitespace characters. An empty string ('') has no characters at all, so it cannot contain only spaces - it contains nothing. The function correctly returns FALSE because the string is empty, not space-filled.