Question: The variable height is a numeric vector in the code below. Which statement returns the value 35?

  1. `height(length(height))`
  2. `height[length(height)]`
  3. `height[length[height]]`
  4. `height(5)`

Answer: The correct answer of the above question is Option B:`height[length(height)]`