Multiplication operator (*) replicates the string.
1 Like
True
Reason — Multiplication operator (*) creates a new string by repeating multiple copies of the same string.
Answered By
3 Likes
The last index number of string is (length-1) or -1.
"abc" * 2 will give abc*2 as output.
We can combine two strings with the help of '&' operator.
When we compare "A" != "a", it will give True as an output.