1. What is Pandas in Python used for?

2. Which method is used to read a CSV file in Pandas?

3. Which function returns the first 5 rows of a DataFrame?

4. What does df.describe() do?

5. What is the result of df[df['Age'] > 30]?

6. Which method gives the shape (rows, columns) of the DataFrame?

7. How to get a single column named "Salary" from a DataFrame df?

8. What does df.dropna() do?

9. Which method is used to reset the DataFrame index?

10. What does axis=1 mean in pandas?