A substring is a smaller portion of a larger string extracted based on its starting and ending positions within that string.
Indexing (String): Refers to accessing individual characters within a string using their position or index value.
Length (String): The total number of characters in a string, including spaces and punctuation marks.
Slice (String): Similar to substring but allows for extracting multiple characters at once, based on a specified range.