1 | 15 | 17 | |||||||||||||||||||||||
2 | |||||||||||||||||||||||||
3 | |||||||||||||||||||||||||
18 | |||||||||||||||||||||||||
4 | 5 | ||||||||||||||||||||||||
19 | |||||||||||||||||||||||||
7 | 6 | ||||||||||||||||||||||||
8/14 | 16 | ||||||||||||||||||||||||
9 | |||||||||||||||||||||||||
10 | |||||||||||||||||||||||||
11 | |||||||||||||||||||||||||
12 | |||||||||||||||||||||||||
13 | |||||||||||||||||||||||||
1. A set of instructions that performs a specific task and does not return a value.
2. Tthe position of a character starting from the beginning of the string.
3. The area within a program where variables are accessible within a block of code, such as within an if statement or a loop.
4. The position of the first character to exclude from the slice.
5. Swapping certain characters or substrings in a string with new ones.
6. The position of a character starting from the end of the string.
7. Placeholders in a function's definition that outline the type and number of inputs the function can accept
8. The process of altering or transforming strings to achieve a desired result.
9. A variable declared within a function which can only be accessed within that specific function.
10. A programming technique involving a function that calls itself to solve a problem.
11. A variable declared outside any function or procedure, which can be accessed from any part of the program.
12. Removing leading and trailing whitespace characters from a string.
13. A statement used in a subprogram to return a value to the calling program.
14. The method used to extract a subset of characters from a string.
15. Changing the case (uppercase or lowercase) of characters within a string.
16. The process of dividing a program into separate functions or procedures to make it more organized and easier to maintain.
17. The process of accessing individual characters within a string using their position.
18. Dividing a string into multiple substrings based on a specified separator.
19. The number of positions to skip between characters in the slice.