We can combine two strings with the help of '&' operator.
1 Like
False
Reason — We can combine two strings with the help of '+' operator.
Answered By
3 Likes
"abc" * 2 will give abc*2 as output.
Multiplication operator (*) replicates the string.
When we compare "A" != "a", it will give True as an output.
String allows forward and backward type of indexing.