Which components are a part of the OCI Identity and Access Management service?
Correct Answer: A
Detailed Answer in Step-by-Step Solution: * Objective: Identify IAM components in OCI. * Understand IAM: Manages access via policies, groups, etc. * Evaluate Options: * A: Policies-Core IAM component-correct. * B: Subnets-Networking, not IAM. * C: Instances-Compute, not IAM. * D: VCN-Networking, not IAM. * Reasoning: Only A is an IAM element-others are resources. * Conclusion: A is correct. OCI documentation states: "IAM includes components like policies (A), groups, and compartments to control resource access." B, C, and D are infrastructure, not IAM-only A fits per OCI's IAM framework. Oracle Cloud Infrastructure IAM Documentation, "IAM Components".
Question 7
You are attempting to save a model from a notebook session to the model catalog by using ADS SDK, with resource principal as the authentication signer, and you get a 404 authentication error. Which TWO should you look for to ensure permissions are set up correctly?
Correct Answer: A,C
Detailed Answer in Step-by-Step Solution: * Objective: Troubleshoot a 404 authentication error when saving a model using ADS SDK with resource principal. * Understand Resource Principal: Allows notebook sessions to act as principals via dynamic groups and policies-no user credentials needed. * Analyze 404 Error: Indicates an authorization failure-likely missing permissions or misconfigured resource principal. * Evaluate Options: * A: True-Dynamic group must include notebook sessions (e.g., resource.type = 'datasciencenotebooksession') to authenticate. * B: False-Block volume stores artifacts locally, but saving to the catalog is a permission issue, not storage. * C: True-Policy must grant manage data-science-models to the dynamic group for catalog access. * D: False-Service gateway ensures network access, but 404 is auth-related, not connectivity. * E: False-Resource principal uses dynamic group policies, not user group policies. * Reasoning: A (group inclusion) and C (policy permission) are critical for resource principal auth- others are tangential. * Conclusion: A and C are correct. OCI documentation states: "To use resource principal with ADS SDK for model catalog operations, ensure (1) a dynamic group includes the notebook session with a matching rule (e.g., all {resource.type = 'datasciencenotebooksession'}) and (2) a policy grants the dynamic group manage data-science-models permissions in the compartment." B is unrelated (storage location), D is network-focused, and E applies to user auth-not resource principal. A 404 error flags missing auth, fixed by A and C. Oracle Cloud Infrastructure Data Science Documentation, "Using Resource Principals with ADS SDK".
Question 8
You are asked to prepare data for a custom-built model that requires transcribing Spanish video recordings into a readable text format with profane words identified. Which Oracle Cloud Service would you use?
Correct Answer: B
Detailed Answer in Step-by-Step Solution: * Objective: Transcribe Spanish video audio and identify profanity. * Evaluate Options: * A: Anomaly Detection-Not for transcription or text analysis. * B: Speech-Converts audio to text (e.g., Spanish), base for further analysis-correct. * C: Translation-Translates text, not transcription. * D: Language-Analyzes text (e.g., profanity), but needs transcribed input. * Reasoning: Speech (B) transcribes video audio; Language could follow for profanity. * Conclusion: B is correct for transcription. OCI Speech "transcribes audio from video or audio files into text, supporting languages like Spanish." Post- transcription, OCI Language could detect profanity, but B is the starting point-Anomaly (A) and Translation (C) don't fit. Oracle Cloud Infrastructure Speech Documentation, "Transcription Features".
Question 9
Which encryption is used for Oracle Data Science?
Correct Answer: A
Detailed Answer in Step-by-Step Solution: * Objective: Identify encryption standard for OCI Data Science. * Understand OCI Encryption: Applies to data at rest and in transit. * Evaluate Options: * A: AES-256-Industry-standard, OCI default-correct. * B: DES-Outdated, weak-incorrect. * C: TDES-Older, less secure-incorrect. * D: Twofish-Not OCI standard-incorrect. * E: RSA-Asymmetric, not primary for data at rest-incorrect. * Reasoning: AES-256 is OCI's go-to for Data Science resources. * Conclusion: A is correct. OCI documentation states: "Data Science services encrypt data at rest using AES-256 (A), ensuring high security for notebooks, jobs, and models." B, C, D, and E are either outdated or not used-only A matches OCI's encryption policy. Oracle Cloud Infrastructure Data Science Documentation, "Data Encryption".
Question 10
You have an embarrassingly parallel or distributed batch job on a large amount of data that you consider running using Data Science Jobs. What would be the best approach to run the workload?
Correct Answer: B
Detailed Answer in Step-by-Step Solution: * Objective: Optimize embarrassingly parallel workload in OCI Jobs. * Evaluate Options: * A: Sequential runs-Inefficient for parallel tasks. * B: Simultaneous runs-Maximizes parallelism-correct. * C: False-Jobs support parallelism. * D: One job per run-Misstates capability, wasteful. * Reasoning: B leverages OCI's parallel run support. * Conclusion: B is correct. OCI documentation states: "For embarrassingly parallel tasks, create one Job and launch multiple simultaneous Job Runs (B) to process data efficiently." A is slow, C is incorrect, and Dovercomplicates-B is the best approach. Oracle Cloud Infrastructure Data Science Documentation, "Parallel Job Execution".