Which of the following TWO non-open source JupyterLab extensions has Oracle Cloud Infrastructure (OCI) Data Science developed and added to the notebook session experience?
Correct Answer: A,D
Detailed Answer in Step-by-Step Solution: * Objective: Identify two OCI-developed, non-open-source JupyterLab extensions. * Understand Extensions: OCI enhances JupyterLab with proprietary tools. * Evaluate Options: * A: Environment Explorer-OCI-specific, non-open-correct. * B: Table of Contents-Open-source Jupyter-incorrect. * C: Command Palette-Open-source Jupyter-incorrect. * D: Notebook Examples-OCI-specific, non-open-correct. * E: Terminal-Open-source Jupyter-incorrect. * Reasoning: A and D are OCI proprietary; others are standard JupyterLab. * Conclusion: A and D are correct. OCI documentation states: "OCI Data Science adds non-open-source extensions like Environment Explorer (A) for conda management and Notebook Examples (D) for sample code-both proprietary enhancements." B, C, and E are open-source JupyterLab defaults-only A and D are OCI-specific per the notebook session design. Oracle Cloud Infrastructure Data Science Documentation, "JupyterLab Extensions".
Question 12
You realize that your model deployment is about to reach its utilization limit. What would you do to avoid the issue before requests start to fail? Pick THREE.
Correct Answer: A,D,E
Detailed Answer in Step-by-Step Solution: * Objective: Prevent deployment failure due to high utilization. * Evaluate Options: * A: More instances-Scales capacity-correct. * B: Delete-Stops service, not a solution. * C: Fewer instances-Worsens utilization. * D: Larger VM-Increases resource capacity-correct. * E: Reduce bandwidth-Limits load-correct. * Reasoning: A and D boost capacity, E controls demand-proactive fixes. * Conclusion: A, D, E are correct. OCI documentation advises: "To handle high utilization, increase instances (A), use a larger compute shape (D), or adjust load balancer bandwidth (E) to manage request volume." B stops service, C reduces capacity- only A, D, E prevent failure per OCI's scaling options. Oracle Cloud Infrastructure Data Science Documentation, "Model Deployment Scaling".
Question 13
A bike sharing platform has collected user commute data for the past 3 years. For increasing profitability and making useful inferences, a machine learning model needs to be built from the accumulated data. Which of the following options has the correct order of the required machine learning tasks for building a model?
Correct Answer: C
Detailed Answer in Step-by-Step Solution: * Data Access: The first step in any machine learning workflow is accessing the raw data. This involves retrieving the user commute data collected over the past 3 years from the bike-sharing platform's storage system. * Data Exploration: Once data is accessed, it's explored to understand its structure, quality, and patterns (e.g., missing values, distributions). This step helps identify what preprocessing is needed. * Feature Engineering: After understanding the data, features are created or transformed (e.g., commute duration, time of day) to improve model performance. This step precedes feature exploration because you need engineered features to analyze further. * Feature Exploration: This involves analyzing the engineered features (e.g., correlation analysis, importance ranking) to refine them or select the most relevant ones for modeling. * Modeling: Finally, the prepared data and features are used to train and evaluate a machine learning model. Option C (Data Access, Data Exploration, Feature Engineering, Feature Exploration, Modeling) follows this logical sequence, aligning with standard ML workflows. The correct order reflects the machine learning lifecycle as outlined in Oracle's OCI Data Science documentation. Data Access is the initial step to retrieve data, followed by Data Exploration to assess it (e.g., using OCI Data Science Notebook Sessions with tools like pandas). Feature Engineering transforms raw data into meaningful inputs, followed by Feature Exploration to analyze feature importance (e.g., using ADS SDK' s correlation tools). Modeling is the final step where the model is built and trained. This sequence is consistent with Oracle's recommended practices for building ML models in OCI Data Science (Reference: Oracle Cloud Infrastructure Data Science Service Documentation, "Machine Learning Lifecycle").
Question 14
Which statement about Oracle Cloud Infrastructure Multi-Factor Authentication (MFA) is NOT valid?
Correct Answer: B
Detailed Answer in Step-by-Step Solution: * Objective: Identify the invalid MFA statement. * Evaluate Options: * A: True-Users can't disable MFA; admin-controlled. * B: False-Multiple devices can be registered-invalid. * C: True-Authenticator app is required. * D: True-Admins can disable MFA. * Reasoning: B contradicts OCI's multi-device support. * Conclusion: B is incorrect. OCI documentation states: "Users can register multiple devices for MFA (B is false), must use an authenticator app (C), and cannot disable MFA themselves (A)-admins can (D)." Only B is not valid per OCI's IAM MFA policy. Oracle Cloud Infrastructure IAM Documentation, "Multi-Factor Authentication".
Question 15
You want to make your model more parsimonious to reduce the cost of collecting and processing data. You plan to do this by removing features that are highly correlated. You would like to create a heatmap that displays the correlation so that you can identify candidate features to remove. Which Accelerated Data Science (ADS) SDK method would be appropriate to display the correlation between Continuous and Categorical features?
Correct Answer: B
Detailed Answer in Step-by-Step Solution: * Objective: Visualize correlation between continuous and categorical features using ADS SDK. * Understand Correlation Types: * Continuous vs. Continuous: Pearson correlation. * Categorical vs. Categorical: Cramer's V. * Continuous vs. Categorical: Correlation ratio (eta). * Evaluate Options: * A. corr(): General correlation (Pearson), not suited for mixed types-incorrect. * B. correlation_ratio_plot(): Plots correlation ratio for continuous-categorical-correct. * C. pearson_plot(): Not an ADS method; Pearson is continuous-only-incorrect. * D. cramersv_plot(): Cramer's V for categorical-categorical-incorrect. * Reasoning: Correlation ratio measures association between continuous and categorical variables-ideal for heatmap in this mixed scenario. * Conclusion: B is correct. OCI documentation states: "The correlation_ratio_plot() method (B) in ADS SDK generates a heatmap displaying the correlation ratio between continuous and categorical features, suitable for identifying highly correlated features for removal." corr() (A) defaults to Pearson, pearson_plot() (C) isn't real, and cramersv_plot() (D) is for categorical pairs-only B aligns with OCI's ADS capabilities for this use case. Oracle Cloud Infrastructure ADS SDK Documentation, "Correlation Visualization Methods".