Suppose you have a DataFrame df with columns Name, Age, Gender, and Salary. Which of the following code snippets will filter the DataFrame to include only rows where Age is more than 25 and Salary is less than 50000, and also sort the resulting DataFrame by Name?
You have a linear regression model with 5 features. After checking the VIF (Variance Inflation Factor) for multicollinearity, one of the features has a VIF of 12. What should you consider doing?
You're fetching data from an API that returns data in JSON format. After fetching the data using Python's requests library, what should you do next to convert the returned data into a Python dictionary?