Quiz for Part II: Python Basics for Data Analysis
Multiple-Choice Questions
1. Which Python distribution offers a unified platform for data analysis?
- [ ] PIP
- [ ] PyPy
- [ ] Anaconda
- [ ] CPython
2. In a Jupyter Notebook, how do you run a cell?
- [ ] Alt + Enter
- [ ] Shift + Enter
- [ ] Ctrl + Enter
- [ ] Enter + Enter
3. Which of the following control structures allows you to execute a block of code multiple times?
- [ ] If-Else
- [ ] Loop
- [ ] Function
- [ ] Module
4. What is the primary role of Git?
- [ ] Data Visualization
- [ ] Web Development
- [ ] Version Control
- [ ] Data Analysis
5. Which Python data type is mutable?
- [ ] String
- [ ] Tuple
- [ ] List
- [ ] Integer
True/False Questions
1. You can only install Python packages through Anaconda.
- [ ] True
- [ ] False
2. Functions in Python can return multiple values.
- [ ] True
- [ ] False
3. In Python, variable names are case-insensitive.
- [ ] True
- [ ] False
4. Jupyter Notebooks automatically...