The slice operator is represented by ................
(a),
(b):
(c);
(d).
Answer:
Given a string str1, the slice operation str1[n:m] returns the part of the string str1 starting from index n (inclusive) and ending at m (exclusive).
So, the correct answer is (b).