

InterviewSolution
Saved Bookmarks
1. |
What is the following code : x = 5 y = \'a\' print (y* a) |
Answer» a string can not be multiplied \'a\' is a string<br>No its error in your program if you take x*y then is thisoutput<br>Output:a a a a a | |