CBSE Class 11 Computer Science Question 43 of 91

String Manipulation — Question 3

Back to all questions
3
Question

Question 3

What is the result of following statement, if the input is 'Fun'?

print(input("...") + "trial" + "Ooty" * 3)

Answer

The result of the statement is:

FuntrialOotyOotyOoty

Answer