CBSE Class 11 Computer Science
Question 71 of 91
String Manipulation — Question 16
Back to all questions 16
Question Question 8b
Find the errors. Find the line numbers causing errors.
- S = "PURA VIDA"
- S1 = S[: 10] +S[10 :]
- S2 = S[10] + S[-10]
Answer
The error is in line 3. Length of string S is 9 so its forward indexes range for 0 to 8 and backwards indexes range from -1 to -9. S[10] and S[-10] are trying to access out of bound indexes.