Practice for the Red Hat Certified Specialist in OpenShift AI (EX267) exam with 18 exam-style practice questions, instant answer reveals, and concise explanations of every correct answer. Topics include: When using Data Science Pipelines, where are the pipeline artifacts (like trained model files) typically saved?. Follow @CertPunch and visit certpunch.com for more certification practice exams and study content.
Prefer hands-on? Take this round as an interactive practice test — answer every question, get instant feedback, and see your score: Start the Red Hat Certified Specialist in OpenShift AI (EX267) practice test →
What you will practice
- When using Data Science Pipelines, where are the pipeline artifacts (like trained model files) typically save…
- Which component provides the underlying pipeline orchestration engine for OpenShift AI pipelines?
- What mechanism keeps user data safe when a notebook workbench is restarted or shut down?
- Which custom resource definition represents Red Hat OpenShift AI global platform configurations?
- Which interface manages version control integration collaboratively from JupyterLab?
- WHICH API GROUP PROVIDES THE DATASCIENCECLUSTER CUSTOM RESOURCE DEFINITION?
Answers and explanations
Tap a question to expand the answer and the exam reasoning. Try to commit to your own pick first.
Q1. When using Data Science Pipelines, where are the pipeline artifacts (like trained model files) typically saved?
Answer: C. S3-compatible Object Storage
Data Science Pipelines relies on S3-compatible object storage to save artifacts like trained models. Storing files in ephemeral memory or Git repositories is impractical for binary model weights due to size limits and lack of accessibility.
Q2. Which component provides the underlying pipeline orchestration engine for OpenShift AI pipelines?
Answer: C. Data Science Pipelines (based on Kubeflow Pipelines v2)
OpenShift AI Data Science Pipelines uses an orchestration engine based on Argo Workflows. Jenkins and GitLab are generic CI tools that lack native Kubernetes data science integrations required for this specific platform.
Q3. What mechanism keeps user data safe when a notebook workbench is restarted or shut down?
Answer: D. Persistent Volume Claims attached to /opt/app-root/src
Persistent Volume Claims attached to the workbench directory ensure user data persists across pod restarts. Ephemeral container memory is wiped when the pod shuts down, making it completely unsuitable for saving work.
Q4. Which custom resource definition represents Red Hat OpenShift AI global platform configurations?
Answer: C. DataScienceCluster
The DataScienceCluster custom resource definition manages global platform configurations and components in Red Hat OpenShift AI. DSCInitialization handles initial setup, but the DataScienceCluster resource controls the active global cluster configuration.
Q5. Which interface manages version control integration collaboratively from JupyterLab?
Answer: A. Git Extension Interface Panel
The JupyterLab Git Extension Interface Panel provides a graphical way to manage version control collaboratively. While terminal commands are available, the interface panel is the integrated solution designed for this workflow.
Q6. WHICH API GROUP PROVIDES THE DATASCIENCECLUSTER CUSTOM RESOURCE DEFINITION?
Answer: D. datasciencecluster.opendatahub.io
The DataScienceCluster custom resource definition belongs to the datasciencecluster.opendatahub.io API group. OpenShift AI builds upon OpenDataHub foundations, so its core configurations share this API lineage rather than generic Red Hat namespaces.
Q7. What happens to a user's persistent volume claim (PVC) storage when their active workbench container is stopped?
Answer: A. The storage remains preserved and reattaches when the workbench is started again
Persistent volume claims retain data when a workbench stops. The storage reattaches upon restarting, ensuring notebooks and files are not lost. Data is only removed if the persistent volume claim itself is explicitly deleted.
Q8. To test model inference locally using curl, what HTTP method must be specified in the terminal command?
Answer: D. POST
Model inference testing requires sending a data payload to the endpoint, making POST the correct method. GET retrieves information without a body, so it cannot deliver the required payload for inference.
Q9. What must be done to allow an external application to access a protected model serving endpoint securely?
Answer: D. Create an inference service token or configure ServiceAccount authentication tokens
Creating an inference service token configures the required authentication for external clients. Disabling network policies or allowing anonymous access violates basic security practices and will not securely grant valid access.
Q10. What format is used to write custom pipeline component definitions for use within Kubeflow Pipelines SDK?
Answer: D. YAML or Python decorators defining the component container specs
Kubeflow Pipelines rely on component definitions formatted as YAML or Python decorators. These formats specify the container image and inputs, which is required for the pipeline execution engine.
Q11. Which type of PVC is required if multiple data scientists need to read and write to the same shared directory simultaneously?
Answer: A. ReadWriteMany (RWX)
ReadWriteMany allows multiple nodes to mount the volume simultaneously for reading and writing. ReadWriteOnce restricts access to a single node, preventing concurrent use by multiple data scientists.
Q12. Which component of Red Hat OpenShift AI handles the installation and lifecycle management of the platform?
Answer: A. RHOAI Operator
The Red Hat OpenShift AI Operator handles installation and lifecycle management using a custom resource. Knowing the operator's role is crucial for administering the platform and troubleshooting component deployment.
Q13. To expose a deployed model outside the OpenShift cluster securely, which resource does OpenShift Service Mesh leverage?
Answer: A. Ingress Gateway
The OpenShift Service Mesh uses an Ingress Gateway to route external HTTP traffic securely to internal services like models. Standard cluster services such as NodePort or ClusterIP do not provide the required secure external routing by themselves.
Q14. Which user interface role must be assigned within a Data Science Project to allow a user to edit workbenches but not delete the project?
Answer: A. edit
Assigning the edit role in a Data Science Project allows a user to modify workbenches without granting project deletion privileges. The admin role grants excessive permissions, while viewer strictly limits read access.
Q15. What setting within a notebook configuration dictates which physical cluster nodes the notebook pods can be scheduled onto?
Answer: A. Tolerations and Node Selectors parameters
Tolerations and node selectors control where the OpenShift AI notebook pods land in the cluster. The storage and ingress options fail because they manage capacity and routing, not the physical scheduling of the compute workload.
Q16. To track down a failure during a Data Science Pipeline execution, where should a data scientist look first in the RHOAI dashboard?
Answer: A. The individual step execution logs available inside the Pipeline Run graph view
The Pipeline Run graph view provides direct access to the individual execution logs for each failed step. The infrastructure event viewer or operator history will not show the specific data science code errors needed to troubleshoot the pipeline failure.
Q17. What metric monitoring tool stores metrics captured from served machine learning models?
Answer: B. Prometheus
Prometheus is the underlying metrics storage layer used by OpenShift to capture data from served models. The other options are incorrect because Jaeger handles tracing, while Elasticsearch and Thanos serve different data retrieval purposes.
Q18. What custom resource definition can be used to set cluster-wide resource configurations for the OpenShift AI dashboard UI?
Answer: C. DashboardConfig
The DashboardConfig custom resource definition allows administrators to manage cluster-wide settings for the OpenShift AI dashboard. It controls dashboard features and namespace futures, while the DataScienceCluster resource manages the core components.
More Red Hat Certified Specialist in OpenShift AI (EX267) drills and other practice exams are on @CertPunch. New rounds drop every few days at certpunch.com.