Correct answer is : A
For function call printme('Welcome'), the value for count is not passed so it defaults to "1". So it will print "Welcome"
For function call printme('Pythoneasy', 2), count value will be overridden to "2" so print(msg * count) will be same as print("Pythoneasy" * 2) and will print "PythoneasyPythoneasy"
Comment here: