The following statement will _________ df = df.drop(['Name', 'Class', 'Rollno'], axis = 1) #df is a DataFrame object
1.delete three columns having labels ‘Name’, ‘Class’ and ‘Rollno’
2. delete three rows having labels ‘Name’, ‘Class’ and ‘Rollno’
3.delete any three columns
4. return error
Answer:1