OCI 1Z0-1084-25 sample questions with explanations, traps, topic labels, and IT Mastery route links.
These original sample questions are designed to help you check how the exam topics appear in decision-style prompts. They are not taken from the live exam.
Use these sample questions as a guided self-assessment for OCI Developer Professional (1Z0-1084-25) topics such as API Gateway, Functions, Events, Notifications, Streaming, authentication choices, resource principals, retry safety, and idempotent service design. The prompts focus on service-boundary decisions and safe application behavior on OCI.
The sample set below is part of the Oracle OCI 1Z0-1084-25 guide path:
Work through each prompt before opening the explanation. Developer questions usually reward classifying the interaction first: synchronous API, event trigger, stream processing, workflow coordination, authentication, or retry behavior.
Topic: Synchronous API exposure
A team needs to expose an HTTPS endpoint for a small stateless backend. Callers must receive an immediate response, and the team wants a managed front door with routing and authentication controls before the backend executes. Which OCI design is strongest?
Best answer: B
Explanation: The requirement is a synchronous HTTPS API with a managed entry point. API Gateway is the natural front door for routing, authentication integration, and invoking a backend such as a Function or service.
Why the other choices are weaker:
What this tests: API Gateway, synchronous interaction design, backend invocation, and public API boundaries.
Related topics: API Gateway; Functions; HTTPS APIs; Authentication; Service boundaries
Topic: Event-driven processing
A storage bucket receives uploaded files. Each upload should trigger lightweight validation logic and then notify downstream teams if the file is accepted. The uploader does not need to wait for validation to finish. Which design best fits?
Best answer: C
Explanation: The upload is an asynchronous trigger. A strong design routes the object-created event to validation code and then sends a notification or downstream message based on the result, keeping clients decoupled from back-end workflow steps.
Why the other choices are weaker:
What this tests: Events, Functions, Notifications, asynchronous processing, and decoupled workflow design.
Related topics: Events; Functions; Notifications; Object Storage; Async flow
Topic: Runtime authentication
Code running on OCI compute needs to call OCI APIs. The security team wants to avoid embedding user API keys in application configuration. Which approach is strongest?
Best answer: A
Explanation: Runtime identity should avoid long-lived user credentials when OCI can provide service or instance identity. Instance principals let compute workloads authenticate as resources, and IAM policy controls what they can do.
Why the other choices are weaker:
What this tests: Instance principals, IAM policy scope, runtime identity, and avoiding embedded secrets.
Related topics: Instance principals; IAM; API calls; Runtime auth; Least privilege
Topic: Safe retries
A Function writes a billing adjustment when it receives an event. The event source can retry delivery after a timeout, and duplicate adjustments would be costly. What should the developer add?
Best answer: D
Explanation: Retryable and event-driven systems must assume duplicate delivery can happen. Idempotency protects the side effect by recording or checking a unique key before applying the adjustment.
Why the other choices are weaker:
What this tests: Idempotency, retry behavior, duplicate event handling, and safe side-effect design.
Related topics: Idempotency; Functions; Events; Retries; Reliability
Tech Exam Lexicon and IT Mastery are independent study tools. They are not affiliated with, endorsed by, or sponsored by Oracle or any certification body.