For a given declaration in Python as s = "WELCOME", which of the following will be the correct output of print(s[1::2])?
ECM
Reason — The slicing will start from index 1 and return at every alternative step.
s[1] = Es[3] = Cs[5] = Moutput = ECM