Multiple choice technology programming languages

x="TIB Ltd"  
y=Len(x)
y=???

  1. 7

  2. 6

  3. 3

  4. 0

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

The Len function counts all characters including spaces. 'TIB Ltd' has 7 characters: T, I, B, space, L, t, d. The space between words is counted.