CBSE Class 11 Computer Science
Question 1 of 19
Strings in Python — Question 3
Back to all questions 3
Question Assertion (A): The process of repeating a set of elements in a string is termed as replication.
Reasoning (R): Repetition allows us to repeat the given string using (*) operator along with a number that specifies the number of replications.
- Both A and R are true and R is the correct explanation of A.
- Both A and R are true but R is not the correct explanation of A.
- A is true but R is false.
- A is false but R is true.
Both A and R are true and R is the correct explanation of A.
Explanation
In Python, the process of repeating a string multiple times is referred to as repetition or replication. This is done using the (*) operator, where a string is multiplied by an integer to create a new string that repeats the original string the specified number of times.