Q. Suppose we have a = [1,2,3,4,5], which of the following statements is correct? (A) print(a[:100]) #Print [1,2,3,4,5] ? (B) print(a[:]) #Print [1,2,3,4] ? (C) print(a[0:]) #Print [2,3,4,5] ? (D) print(a[-1:]) #Print [1,2] ? ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (A) print(a[:100]) #Print [1,2,3,4,5] ?