Ask Question

What are the valid indexes for the string 'new york'?

+3
Answers (1)
  1. 18 December, 01:32
    0
    Most programming languages index strings in a zero-based way. This means the 'n' has index 0, and the 'k', has index 7.

    So valid indexes are from 0 to (and including) 7.

    VBScript would refer to the 'n' as index 1, so always check if your environment is 0-based or 1-based.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “What are the valid indexes for the string 'new york'? ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers