Which of the following subject will never printed in following code? import random L=["English", "Hindi", "Math", "Science", "SST", "CS", "IP"] for i in range(random.randint(1, 6)): print(L[i])
1. CS and IP both
2. English
3.IP
4.English and Hindi both
Answer:3