Problemas
What is it called when one specific character is pulled out from a string? Concatenating Indexing Removing Slicing Question 2(Multiple Choice Worth 5 points) (01.04 MC) Look at the following string example: word1=''Cold'' What index position is the letter "C"? 1 ) 2 3
Roztwór
Encarnación
élite · Tutor durante 8 años
4
(379 Votos)
Respuesta
1. B 2. A
Explicación
1. The process of pulling out a specific character from a string is called "Indexing". In programming, especially in languages like Python, you can access a specific character in a string by using its index. For example, if we have a string `hello`, the character at index 0 is `h`, at index 1 is `e`, and so on.2. In the given string example `
`, the index position of the letter "C" is 0. In most programming languages, the index of a string starts from 0. Therefore, the letter "C" is at index 0.