Which statement about Python list indexing and slicing is correct?
A slice can return only one element
Index 1 is the first item and a slice includes its stop index
1
Index -1 selects the first item
-1
Index 0 is the first item, -1 is the last item, and a slice excludes its stop index
0