Problem
1. What is the output of print 'a'+'b' if a and b are objects? Why do you get this output?
2. What is the output from print "Hi" + "there"? Why do you get this output?
3. What is the output from print "Hi" * "10"? Why do you get this output?
4. What is the output from print "Hi" + "10"? Why do you get this output?