Q. Suppose there is a list such that: l=[2,3,4]. If we want to print this list in reverse order, which of the following methods should be used? (Solved)
1. reverse(l)
2. list(reverse[(l)])
3. reversed(l)
4. list(reversed(l))
- d. list(reversed(l))