Key details for this exam, checked against the published exam outline
Each question shows the correct answer and an explanation of why it is right
A development team is building a microservice using OCI Functions written in Python. The function needs to read a database connection string that must never be stored in plaintext in the function's application configuration or source code. Which approach best meets this security requirement while remaining natively integrated with OCI?
OCI Vault is designed to securely store and manage secrets such as credentials and connection strings. By granting the function a resource principal and a dynamic group policy allowing access to the Vault secret, the function can retrieve the secret securely at runtime without ever exposing it in plaintext configuration or code. Storing it as a function config variable, hard-coding it, or using a public bucket all expose the secret or violate least-privilege security practices.
A company exposes several backend microservices running in OCI Container Engine for Kubernetes (OKE) through OCI API Gateway. They need to enforce that only requests containing a valid JSON Web Token (JWT) issued by their identity provider can reach the backend services, without modifying the backend services themselves.
Which API Gateway feature should they configure to achieve this?
OCI API Gateway supports configuring authentication at the deployment level, including JWT-based authentication where the gateway validates the token's signature, issuer, audience, and expiration before forwarding the request to the backend. This offloads authentication from the backend services entirely. CORS policies control cross-origin browser behavior, logging policies only capture telemetry, and rate limiting controls traffic volume rather than validating identity tokens.
A retail company is building a real-time order processing pipeline. Multiple independent consumer applications need to read the same stream of order events, each maintaining its own read position, and messages must be retained for replay within a configurable retention window. Which OCI service is best suited for this requirement?
OCI Streaming is a Kafka-compatible, partitioned, append-only log service that allows multiple consumer groups to independently read and replay messages within a configurable retention period (up to 7 days). OCI Notifications is a publish-subscribe service for one-time delivery of alerts, not built for replay. OCI Queue is designed for point-to-point message delivery with visibility timeouts rather than multiple independent consumers replaying the same log. OCI Events reacts to resource state changes rather than serving as a general-purpose durable stream of application data.
A developer wants to provision a repeatable OCI environment (VCN, compute instances, and a load balancer) using declarative infrastructure-as-code, and wants OCI to manage the state file, provide a web console for plan/apply approvals, and integrate with OCI IAM policies for governance. Which OCI service should they use?
OCI Resource Manager is Oracle's managed Terraform service that stores the state file remotely, provides plan and apply actions through the OCI console with approval workflows, and integrates with IAM policies to control who can create or manage stacks. OCI DevOps pipelines primarily orchestrate build/deploy stages and can call Resource Manager, but do not natively manage Terraform state. CLI scripting through Cloud Shell requires manual Terraform state handling, and instance configuration templates only address compute instance provisioning, not full infrastructure orchestration.
A developer configures an OCI Events rule that matches on the "Object - Create" event type for a specific Object Storage bucket, with the intention of automatically triggering an OCI Function to process newly uploaded files. After testing, uploads to the bucket do not trigger the function.
True or False: A properly configured Events rule can invoke an OCI Function directly as its action without requiring a Notifications topic as an intermediary.
OCI Events rules support several action types including Notifications, Streaming, and directly invoking an OCI Function, so a Notifications topic is not required as an intermediary. If the function isn't triggering, likely causes include missing IAM policies granting the Events service permission to invoke the function, incorrect event type/condition filters, or the function not being in an ACTIVE state. The statement itself about direct Function invocation being supported is true.
181 questions covering all exam domains, starting from $20
Exam domains verified against: Official Oracle 1z0-1084-26 exam guide, last checked September 2026.
Develop applications using Oracle Cloud Infrastructure services. Understand how to build, deploy, and manage applications on OCI using various programming languages and frameworks. Focus on integrating OCI services into application architecture.
Work with OCI Compute instances, custom images, and instance configurations. Understand instance management, scaling, and performance optimization. Knowledge of Compute shapes, networking, and security groups is essential.
Sample question from this domain above: Q5
Understand OCI storage services including Object Storage, Block Volumes, and File Storage. Learn data transfer, lifecycle policies, and storage performance. Work with storage security and encryption mechanisms.
Develop with OCI Database services including Autonomous Database and Database Cloud Service. Understand connectivity, backup strategies, and performance tuning. Knowledge of database security and patching is required.
Configure and manage Virtual Cloud Networks, subnets, and routing. Understand load balancing, DNS, and network security. Work with network connectivity options and performance optimization.
Implement security best practices across OCI services. Understand identity and access management, encryption, and compliance requirements. Knowledge of security policies and audit logging is essential.
Sample question from this domain above: Q1
Common questions about the exam itself