Loops

1.Which of the following functions will not result in an error when no arguments are passed to it?
2.What will be the output of the following code? for i in ''.join(reversed(list('virtual'))): print(i)
3.What is the output of the following? for i in [a, b, c, d][::-1]: print (i)