CBSE Class 11 Computer Science
Question 58 of 91
String Manipulation — Question 3
Back to all questions 3
Question Question 1c
What is the result of the following expression?
print ('One', ' Two ' * 2)
print ('One ' + 'Two' * 2)
print (len('10123456789'))Answer
One Two Two
One TwoTwo
11