Python Data Science Essentials

Quiz covering NumPy,Pandas,Seaborn,and Matplotlib basics.

1. Which Python library is primarily used for data manipulation and analysis with DataFrames?
2. Which of the following are key features of NumPy arrays compared to Python lists? (Select all that apply)
3. A Pandas Series can contain elements of different data types.
4. What is the abbreviation for the NumPy data structure used to store multi-dimensional numerical data?
5. Which Matplotlib function is used to create a scatter plot?
6. Which of the following are valid methods for handling missing values in a Pandas DataFrame? (Select all that apply)
7. Scikit-learn provides tools for deep learning tasks like neural networks.
8. What does the Pandas method 'df.groupby()' primarily facilitate?
9. Which of the following are core components of a Pandas DataFrame? (Select all that apply)
10. NumPy arrays are mutable, meaning their elements can be modified after creation.
11. Which function is used to split a dataset into training and testing sets in scikit-learn?
12. Which of the following are statistical functions available in NumPy? (Select all that apply)
13. Pandas DataFrames are immutable, meaning their structure cannot be modified after creation.
14. What is the output of np.array([1, 2, 3]) + np.array([4, 5, 6])?
15. Which of the following visualization libraries are built on top of Matplotlib? (Select all that apply)
16. Name the Pandas method used to compute summary statistics (mean, std, min, max) for numerical columns in a DataFrame.
17. Which data type does Pandas use to represent missing values in numerical columns?
18. Which of the following operations can be performed with NumPy's broadcasting feature? (Select all that apply)
19. What is the name of the scikit-learn module used for linear regression models?
20. Which method is used to combine two Pandas DataFrames vertically (stacking rows)?
Answered 0 of 0 — 0 correct