OracleProfessional level1Z0-997-25

1Z0-997-25 exam dumps: 175 free OCI 2025 Architect Professional practice questions

Free 1Z0-997-25 practice questions for the Oracle Cloud Infrastructure 2025 Architect Professional exam, with the correct answer and a full explanation for every option. Read the first 10 below, browse all 175 by number, or take a timed practice exam.

Question bank last updated May 2025

Free 1Z0-997-25 practice questions

Questions 1 to 10 of 175

Pick an answer before you open the explanation. Each question also has its own page with a permalink.

1Z0-997-25 Question 1

Select 2

You are designing a new microservices-based application on Oracle Cloud Infrastructure (OCI). The plan is to run core services on Oracle Container Engine for Kubernetes (OKE) and event-driven tasks with Oracle Functions. You need to ensure secure and reliable internal communication for the microservices, while minimizing direct exposure to the public internet. Which two strategies should you implement to align with OCI best practices for cloud-native architectures?

  1. A

    Use Oracle Service Mesh to manage internal communication, traffic policies, and service-to-service security.

  2. B

    Expose every microservice publicly on individual ephemeral IP addresses to simplify client access.

  3. C

    Front all external-facing microservices with Oracle API Gateway to handle request routing, authentication, and client throttling.

  4. D

    Embed credentials within container images to avoid external secret references and reduce performance overhead.

Show answer and explanation

Correct answers: A, C

Explanation

Securing microservices� internal communication and limiting surface exposure to external clients are central principles of cloud-native architecture on OCI. Oracle Service Mesh supports traffic policies and security within Kubernetes clusters, while Oracle API Gateway manages external connectivity. These best practices help maintain security, scalability, and operational efficiency. For further details, refer to Oracle� service mesh and API Gateway documentation.

  • A. Correct.

    Option 1 is correct. Oracle Service Mesh (or a similar service mesh solution) enables fine-grained control over service-to-service communication, enforces zero-trust security models, and provides traffic metrics and policies for microservices. This is a recommended practice for securing and managing complex microservices architectures on OCI.

  • B. Incorrect.

    Option 2 is incorrect. Exposing microservices directly to the internet via ephemeral IP addresses increases the attack surface and complicates service discovery and security. A better design is to secure internal traffic within a private subnet and use managed services like API Gateway or a service mesh for external access and inter-service communication.

  • C. Correct.

    Option 3 is correct. Oracle API Gateway allows you to decouple external clients from your internal microservices by providing a single entry point for requests, handling security, authentication, request routing, and traffic throttling. This is a recommended pattern for cloud-native applications.

  • D. Incorrect.

    Option 4 is incorrect. Hardcoding credentials in container images is an insecure practice. Instead, you should store and manage secrets externally, such as using OCI Vault or Kubernetes Secrets, to ensure credentials remain protected and easily rotatable.

1Z0-997-25 Question 2

Select 2

Your development team is creating a new microservices application that will run on containers in Oracle Cloud Infrastructure (OCI). You must ensure a secure and efficient deployment process, including container image storage, continuous deployment, and seamless updates. Which two recommended steps should you include in your architecture for a cloud-native OCI solution using Oracle Container Engine for Kubernetes (OKE)?

  1. A

    Push container images to the OCI Container Registry (OCIR) for secure storage and automated vulnerability scanning.

  2. B

    Store container images on a single Compute instance in OCI by manually syncing local Docker images to the instance.

  3. C

    Leverage OCI DevOps Pipelines to continuously build and deploy container images from your source repository to OKE.

  4. D

    Enable persistent storage for transient containers by mounting ephemeral local storage on host nodes.

Show answer and explanation

Correct answers: A, C

Explanation

Cloud-native applications on OCI typically leverage OCI Container Registry for secure and efficient image management, and OCI DevOps Pipelines for fully managed CI/CD workflows. These services are designed to integrate directly with Oracle Container Engine for Kubernetes. Storing container images on a single Compute instance introduces manual overhead and security risks, and using ephemeral local node storage is not suitable for persistent data. Refer to the official Oracle documentation on OCI Container Registry, OCI DevOps, and OKE for detailed best practices.

  • A. Correct.

    Option 1: Correct. Using OCI Container Registry (OCIR) is a best practice for storing, versioning, and scanning container images. It integrates seamlessly with OKE, improving security and simplifying deployment flows.

  • B. Incorrect.

    Option 2: Incorrect. Storing container images on a single Compute instance and manually syncing is neither scalable nor aligned with cloud-native best practices. OCIR provides secure, centralized storage.

  • C. Correct.

    Option 3: Correct. OCI DevOps Pipelines offer a managed CI/CD service that integrates with OKE. This automates build, test, and deploy stages, streamlining the continuous delivery process.

  • D. Incorrect.

    Option 4: Incorrect. Ephemeral local storage is lost when containers exit or nodes are replaced. For persistent data, OCI provides persistent volumes or block storage. It's not recommended to rely on ephemeral local storage for data retention in production.

1Z0-997-25 Question 3

Single answer

You have been asked to design a cloud-native, microservices-based e-commerce platform on Oracle Cloud Infrastructure (OCI). The platform must handle varying traffic loads with minimal operational overhead. Key requirements include rapid scalability, high availability, and efficient management of stateless services. Which solution architecture best addresses these requirements?

  1. A

    A) Deploy all services on a single Virtual Machine (VM) instance and manually adjust shape sizes to scale.

  2. B

    B) Implement a microservices architecture using Oracle Container Engine for Kubernetes (OKE) with a Horizontal Pod Autoscaler (HPA), and store microservice state in an external OCI service such as Autonomous Database.

  3. C

    C) Run the application in an on-premises Kubernetes cluster connected to OCI through a VPN to reduce cloud costs.

  4. D

    D) Use local ephemeral storage within each container for stateful services and scale out manually whenever traffic surges.

Show answer and explanation

Correct answer: B

Explanation

A cloud-native microservices approach on OCI often involves using OKE with features like the Horizontal Pod Autoscaler and external data persistence in Autonomous Database to separate state from the microservices. This aligns with the recommended pattern of building stateless microservices that can be scaled horizontally with minimal downtime or manual intervention. Further guidance can be found in OCI's official documentation on Container Engine for Kubernetes, which includes best practices for configuring HPA and integrating with other OCI services to achieve high availability and fault tolerance.

  • A. Incorrect.

    A) Incorrect: Placing all services on a single VM instance and scaling by adjusting the instance shape is manually intensive and does not leverage cloud-native capabilities such as Kubernetes-based auto-scaling. This approach increases operational overhead and does not offer the high availability you typically need for production traffic spikes.

  • B. Correct.

    B) Correct: Using Oracle Container Engine for Kubernetes (OKE) with the Horizontal Pod Autoscaler (HPA) is a recommended cloud-native approach, allowing automatic scaling of microservices. Storing application state in an external data store such as an Autonomous Database ensures stateless service containers, making them more resilient and easier to scale up and down as traffic demands change.

  • C. Incorrect.

    C) Incorrect: While a hybrid or on-premises approach can sometimes be valid, hosting the Kubernetes cluster on-premises for a cloud-native solution negates many auto-scaling benefits and can introduce latency issues. Also, you lose some of OCI� fully managed capabilities that reduce operational overhead.

  • D. Incorrect.

    D) Incorrect: Relying solely on local ephemeral storage for stateful services is not aligned with cloud-native best practices. If containers restart, any state stored locally is lost, which can lead to data inconsistency. Furthermore, manual scaling does not efficiently handle sudden traffic surges.

1Z0-997-25 Question 4

Select 2

Your organization is building a new e-commerce platform on Oracle Cloud Infrastructure using a microservices architecture. The platform must handle large traffic surges during promotional events yet stay cost-efficient when traffic is low. You also want minimal operational overhead for ephemeral workloads, such as order validation tasks, which only run sporadically. Which two design choices should you implement to meet these requirements?

  1. A

    Containerize your microservices with Oracle Container Engine for Kubernetes (OKE) and configure horizontal pod autoscaling

  2. B

    Implement Oracle Functions for stateless, event-driven tasks that scale automatically

  3. C

    Provision Oracle Exadata Cloud Service for ephemeral workloads

  4. D

    Host all microservices on a single always-running Oracle Compute instance with manual scaling

Show answer and explanation

Correct answers: A, B

Explanation

Leveraging Oracle Container Engine for Kubernetes (OKE) with horizontal pod autoscaling ensures that microservices can scale up or down based on real-time loads. Oracle Functions handles stateless, event-driven tasks in a serverless manner, eliminating idle costs. According to Oracle� Cloud Native Architecture best practices, combining OKE for persistent services with Functions for short-lived or ephemeral tasks is an effective way to balance performance and cost efficiency. Refer to Oracle� official OCI documentation for guidance on setting up and configuring these services.

  • A. Correct.

    Correct. Oracle Container Engine for Kubernetes (OKE) supports automatic horizontal pod autoscaling, enabling microservices to dynamically scale based on demand. This design minimizes idle resource costs because when traffic is low, the number of pods can decrease, and when traffic spikes, additional pods are provisioned automatically.

  • B. Correct.

    Correct. Oracle Functions is a serverless platform that automatically spins up execution environments only when needed. It� ideal for short-lived or event-driven tasks, such as order validation, because you pay only for the actual time your function runs, reducing overhead during idle periods.

  • C. Incorrect.

    Incorrect. Oracle Exadata Cloud Service is intended for high-performance database workloads, not transient microservices or event-driven tasks. Using Exadata for ephemeral workloads is both cost-inefficient and operationally complex for the scenario described.

  • D. Incorrect.

    Incorrect. Deploying all microservices on a single Oracle Compute instance with manual scaling can lead to excessive costs when the instance sits idle. Moreover, manual scaling is error-prone, inefficient for handling sudden traffic spikes, and does not provide the flexibility of autonomous or serverless scaling.

1Z0-997-25 Question 5

Select 2

Your team is building an e-commerce analytics pipeline on Oracle Cloud Infrastructure (OCI) to handle user interactions in near real time. They want to use an event-driven, serverless approach to reduce operational overhead and scale seamlessly. Which two design approaches should you adopt to build this microservices solution on OCI?

  1. A

    Use Oracle Functions with OCI Events Service triggers to invoke serverless functions whenever new data is placed in OCI Streaming.

  2. B

    Deploy fixed-shape nodes on Oracle Container Engine for Kubernetes and handle scaling manually by resizing compute instances.

  3. C

    Utilize OCI Streaming to decouple high-throughput data ingestion from downstream microservices, triggering functions for on-demand processing.

  4. D

    Set up a custom VM for Oracle Functions so you can manually configure the underlying OS for each microservice workload.

  5. E

    Implement Oracle Functions behind an API Gateway, ensuring microservices are stateless and scale automatically based on demand.

Show answer and explanation

Correct answers: A, C

Explanation

In this scenario, the primary goal is to build a cloud-native, event-driven, and serverless solution on OCI. Leveraging OCI Streaming for high-throughput data ingestion and Oracle Functions with OCI Events Service for on-demand execution is a recommended pattern. It minimizes operational overhead, scales automatically with incoming traffic, and ensures a loosely coupled microservices architecture. For further information, consult OCI documentation on Functions (https://docs.oracle.com/en-us/iaas/Content/functions.htm) and Streaming (https://docs.oracle.com/en-us/iaas/Content/Streaming/Concepts/streamingoverview.htm).

  • A. Correct.

    Option 1 is correct. Oracle Functions can leverage OCI Events Service to automatically invoke serverless functions when new messages arrive in OCI Streaming. This design pattern is essential for event-driven architectures, allowing functions to run code only when needed and scale seamlessly with incoming events.

  • B. Incorrect.

    Option 2 is incorrect. Manually resizing fixed-shape nodes on Oracle Container Engine for Kubernetes provides scalability but increases operational overhead and does not fully leverage OCI's serverless offerings. This approach can be used but does not align with a purely event-driven, serverless design.

  • C. Correct.

    Option 3 is correct. OCI Streaming provides a scalable and durable messaging backbone, enabling microservices to process data asynchronously. By triggering serverless functions for on-demand transformations, you achieve both elasticity and loose coupling among services.

  • D. Incorrect.

    Option 4 is incorrect. Oracle Functions is a fully managed service running on OCI infrastructure�you do not deploy a custom VM for it. This choice does not reflect the serverless nature of Oracle Functions, which abstracts away the operating system management.

  • E. Incorrect.

    Option 5 is incorrect. While integrating Oracle Functions with an API Gateway is a common pattern for microservices, standalone usage behind an API Gateway does not inherently address high-throughput event ingestion or real-time data processing. The key requirement in the scenario is near real-time event-driven architecture, which is best met by pairing functions with OCI Streaming and Events.

1Z0-997-25 Question 6

Select 2

You are designing a new microservices-based application on Oracle Cloud Infrastructure. Real-time requests are handled by one set of services, while another set of services performs short-lived asynchronous tasks triggered by application events. You plan to use Oracle Container Engine for Kubernetes (OKE) for containerized workloads and an Autonomous Database for persistent storage. To minimize operational complexity while remaining cost-effective, which two design strategies should you implement?

  1. A

    Deploy all microservices on OKE, configuring Horizontal Pod Autoscaling (HPA) to handle variable traffic.

  2. B

    Use Oracle Functions for short-lived event-driven tasks, invoked through OCI Events.

  3. C

    Maintain persistent state in container file systems for faster local reads.

  4. D

    Rely solely on manual node scaling in OKE to manage cost and concurrency spikes.

Show answer and explanation

Correct answers: A, B

Explanation

Using HPA on OKE for real-time services and Oracle Functions for short-lived, event-driven tasks leverages the core strengths of cloud-native design on OCI. Horizontal scaling ensures that container-based microservices can handle fluctuating loads, while serverless Oracle Functions offloads asynchronous work without you managing any infrastructure. This pattern follows OCI best practices for modern, distributed architectures.

  • A. Correct.

    Option 1 is correct. Horizontal Pod Autoscaling (HPA) in OKE allows automatically scaling up and down based on workload demand. This ensures real-time services can handle dynamic traffic levels without manual intervention. This is a recommended OCI best practice for cloud-native architectures seeking to minimize operational overhead.

  • B. Correct.

    Option 2 is correct. Oracle Functions is a serverless platform ideal for short-running, event-driven tasks. Using OCI Events to trigger Functions offloads asynchronous workflows from containerized environments, reducing overhead and ensuring cost efficiency. Reference: 'Using Oracle Functions with Events' in the OCI documentation.

  • C. Incorrect.

    Option 3 is incorrect. Storing persistent state in container file systems creates complexity for scaling and reliability. In Kubernetes, container file systems are ephemeral and not meant to hold stateful data. Instead, using Autonomous Database or persistent storage volumes is the recommended approach.

  • D. Incorrect.

    Option 4 is incorrect. Manual node scaling adds unnecessary operational burden. Although it can temporarily reduce cost if workloads are predictable, it fails to handle sudden traffic spikes effectively and is not aligned with cloud-native best practices.

1Z0-997-25 Question 7

Select 2

You are designing a cloud-native e-commerce platform on Oracle Cloud Infrastructure (OCI). The platform hosts multiple microservices using Oracle Container Engine for Kubernetes (OKE) and uses Oracle Streaming to handle high-volume transaction events. You expect traffic spikes during promotions and sales, and you must ensure the system remains responsive and fault-tolerant. Which two strategies should you implement to optimize scalability and resilience in this microservices architecture?

  1. A

    Distribute OKE node pools across multiple Availability Domains to reduce single points of failure.

  2. B

    Configure all Oracle Streaming traffic to flow through a single partition for easier management.

  3. C

    Enable the Horizontal Pod Autoscaler (HPA) for microservices to automatically scale based on CPU or custom metrics.

  4. D

    Deploy Oracle Functions code as a sidecar container in OKE to quickly scale both simultaneously.

Show answer and explanation

Correct answers: A, C

Explanation

In OCI, distributing workloads across multiple Availability Domains follows best practices for resilient architectures. Likewise, using the Horizontal Pod Autoscaler ensures microservices in OKE automatically scale out during demand spikes. Oracle Streaming should be configured with multiple partitions for parallel event processing. For serverless workloads like Oracle Functions, you would maintain a separate deployment rather than embedding them as sidecar containers. Refer to the Oracle Cloud Infrastructure documentation for official guidelines on container orchestration, serverless deployments, and event streaming management for high-scalability architectures.

  • A. Correct.

    Correct. Spreading node pools across multiple Availability Domains improves high availability and resilience, reducing downtime risks if one domain experiences an outage.

  • B. Incorrect.

    Incorrect. Using a single partition for Oracle Streaming can create a bottleneck. Multiple partitions should be used for parallel processing and higher throughput.

  • C. Correct.

    Correct. The Horizontal Pod Autoscaler automatically increases or decreases pod counts based on defined metrics, helping to handle traffic spikes without manual intervention.

  • D. Incorrect.

    Incorrect. Oracle Functions is a serverless offering that runs separately from OKE. Functions should not be deployed as a sidecar container; this is not a supported or recommended design pattern in OCI.

1Z0-997-25 Question 8

Single answer

Your development team is creating a microservices-based eCommerce application on Oracle Cloud Infrastructure (OCI). Each service is containerized and hosted in Oracle Container Engine for Kubernetes (OKE). You need to frequently deploy new features with minimal disruption, store container images securely, and have the option to quickly roll back if issues arise. Which design approach best addresses these requirements?

  1. A

    Create an OCI DevOps pipeline that builds container images, pushes them to Oracle Container Registry, and uses a rolling update strategy in OKE.

  2. B

    Host all microservice container images in a privately managed on-premises Docker registry and manually update OKE deployments using custom shell scripts.

  3. C

    Perform blue-green deployments by spinning up additional clusters on-demand for each release and migrating traffic with a DNS switch operation.

  4. D

    Use a single large monolithic container image to simplify updates, and manually restart all pods in OKE when releasing a new version.

Show answer and explanation

Correct answer: A

Explanation

OCI DevOps provides a fully managed pipeline solution designed to work seamlessly with OKE and Oracle Container Registry. By automating builds, tests, and deployments, you can minimize downtime via rolling updates and have a fast recovery path with rollbacks. This approach aligns with Oracle's recommended DevOps best practices for microservices. Refer to Oracle documentation (https://docs.oracle.com/en-us/iaas/Content/devops/overview.htm) for detailed guidance on configuring OCI DevOps, container registries, and deployment strategies in OKE.

  • A. Correct.

    Correct. Using OCI DevOps for your build pipeline ensures integrated builds, tests, and deployments. The pipeline can automatically push container images to Oracle Container Registry, and OKE supports rolling deployment strategies for minimal downtime. This approach also facilitates quick rollbacks if a deployment fails.

  • B. Incorrect.

    Incorrect. While a private on-premises registry can be used, manually updating OKE deployments with scripts increases operational overhead and risk of errors. This approach doesn't leverage OCI DevOps features that automate and streamline the CI/CD process.

  • C. Incorrect.

    Incorrect. Blue-green deployments are a valid strategy in some scenarios, but spinning up entirely new clusters on-demand for every release is often more costly and operationally complex than rolling updates within a single OKE cluster.

  • D. Incorrect.

    Incorrect. Combining all microservices into one large container goes against microservices best practices, making updates more disruptive. Manually restarting all pods also increases downtime and operational errors.

1Z0-997-25 Question 9

Single answer

Your company is migrating a monolithic e-commerce application to Oracle Cloud Infrastructure (OCI) and wants to adopt a microservices architecture, containerization, and DevOps best practices. The solution must provide an easily scalable container platform, an automated CI/CD pipeline for quick code changes, and secure communication among microservices. Which approach best meets these requirements in OCI?

  1. A

    Deploy microservices on standalone Compute instances with manually managed Docker containers, store images in an external Docker Hub, and secure communication using Security Lists only.

  2. B

    Use Oracle Container Engine for Kubernetes (OKE) for orchestrating containers, store container images in Oracle Cloud Infrastructure Registry (OCIR), and configure an OCI DevOps Build and Deployment pipeline with mutual TLS between microservices.

  3. C

    Leverage Oracle Functions for every service, store container images in OCI Block Storage, and automate code updates with scheduled manual pushes from developers� local machines.

  4. D

    Deploy microservices on Oracle VM Database Systems equipped with Docker, store container images in OCI Object Storage, and use a third-party CI/CD system without integrating OCI security features.

Show answer and explanation

Correct answer: B

Explanation

Based on Oracle� recommended best practices, microservices solutions on OCI typically use Oracle Container Engine for Kubernetes (OKE) for orchestration, Oracle Cloud Infrastructure Registry (OCIR) for secure container image storage, and the OCI DevOps Build and Deployment pipeline for continuous integration and delivery. Mutual TLS or a service mesh provides secured inter-service communication. Refer to the official Oracle Cloud Infrastructure documentation for guidelines on deploying containerized microservices, managing container images in OCIR, and setting up DevOps pipelines for automated CI/CD.

  • A. Incorrect.

    Option 1 is incorrect because manually managing Docker containers on standalone Compute instances without a container orchestration platform complicates scalability and CI/CD integration. Storing images in an external registry also introduces additional security and network considerations that OCI can handle internally with OCIR.

  • B. Correct.

    Option 2 is correct. Oracle Container Engine for Kubernetes (OKE) provides a managed Kubernetes environment, which is ideal for scaling microservices. OCI DevOps Build and Deployment pipeline automates code integration and deployment. Using OCIR for storing container images ensures security and performance within the OCI environment, and mutual TLS enables secure inter-service communication.

  • C. Incorrect.

    Option 3 is incorrect because Oracle Functions is serverless and is best suited for event-driven, short-running tasks rather than a full microservices e-commerce platform. Also, using OCI Block Storage for container images is less efficient compared to a dedicated container registry like OCIR. Manual pushes do not align with DevOps automation best practices.

  • D. Incorrect.

    Option 4 is incorrect because running microservices on a database system equipped with Docker containers is not a recommended design. It couples compute and database resources, reducing flexibility. Storing container images in Object Storage and using third-party CI/CD without OCI integration overlooks OCI� secure and scalable DevOps capabilities.

1Z0-997-25 Question 10

Select 2

A gaming company is refactoring its monolithic platform into microservices on Oracle Cloud Infrastructure (OCI). They plan to use Oracle Container Engine for Kubernetes (OKE) for container orchestration, Oracle Container Registry (OCIR) for image storage, and OCI DevOps for CI/CD pipelines. They also need a secure method to manage sensitive credentials for each microservice. Which two design decisions align with recommended OCI best practices for this scenario?

  1. A

    Implement an OCI DevOps build pipeline triggered by commits to a source code repository, ensuring container images are stored in Oracle Container Registry, and automate deployments to OKE with rolling updates.

  2. B

    Store credentials in plain text within each microservice� Dockerfile to simplify local development and image creation.

  3. C

    Use Oracle Vault to store sensitive credentials, then reference them via Kubernetes secrets for each microservice in OKE.

  4. D

    Run each microservice on a separate OKE cluster to ensure strict network isolation and reduce operational overhead.

  5. E

    Build a single universal Docker image containing all microservices to streamline DevOps pipelines.

Show answer and explanation

Correct answers: A, C

Explanation

Adopting OCI DevOps pipelines for CI/CD, storing images in OCIR, and using rolling updates in OKE are foundational best practices for cloud native solutions. Protecting secrets with Oracle Vault and referencing them via Kubernetes secrets is another essential security practice. For more information, refer to the official Oracle documentation on OCI DevOps, OKE, and managing secrets with Oracle Vault and Kubernetes secrets.

  • A. Correct.

    Option 1 is correct because using OCI DevOps pipelines, integrating with a version control system, and storing images in OCIR is a recommended best practice for continuous integration and deployment. Rolling updates in OKE minimize downtime and streamline the release process.

  • B. Incorrect.

    Option 2 is incorrect because embedding credentials directly in Dockerfiles is insecure and not aligned with best practices. It exposes secrets when images are built and stored in registries.

  • C. Correct.

    Option 3 is correct as storing sensitive information in Oracle Vault and referencing them through Kubernetes secrets improves security and adheres to principle of least privilege. OCI supports this pattern for microservices running in OKE.

  • D. Incorrect.

    Option 4 is incorrect because generally, you do not need a separate OKE cluster for each microservice. A single OKE cluster can effectively isolate microservices while simplifying operational overhead through namespaces and network policies.

  • E. Incorrect.

    Option 5 is incorrect because bundling all microservices in a single image negates the advantages of modular deployments. It complicates updates and scaling, going against the main benefits of microservices architectures.

Timed practice exam

Take a 1Z0-997-25 practice test under exam conditions

60 questions in 90 minutes, drawn from this bank, with a score report and a per-question review when you finish.

Start timed exam

What the 1Z0-997-25 exam covers

Official Oracle Cloud Infrastructure 2025 Architect Professional exam domains and weightings.

  • Design and Architecture

    30% of exam

  • Infrastructure and Platform Services

    25% of exam

  • Security and Compliance

    25% of exam

  • Operations and Migration

    20% of exam

All 175 1Z0-997-25 practice questions

Every question has a page with the answer and explanation. Numbers are stable, so you can bookmark or share them.

  1. 1.You are designing a new microservices-based application on Oracle Cloud Infrastructure (OCI). The plan is to...
  2. 2.Your development team is creating a new microservices application that will run on containers in Oracle Cloud...
  3. 3.You have been asked to design a cloud-native, microservices-based e-commerce platform on Oracle Cloud...
  4. 4.Your organization is building a new e-commerce platform on Oracle Cloud Infrastructure using a microservices...
  5. 5.Your team is building an e-commerce analytics pipeline on Oracle Cloud Infrastructure (OCI) to handle user...
  6. 6.You are designing a new microservices-based application on Oracle Cloud Infrastructure. Real-time requests...
  7. 7.You are designing a cloud-native e-commerce platform on Oracle Cloud Infrastructure (OCI). The platform hosts...
  8. 8.Your development team is creating a microservices-based eCommerce application on Oracle Cloud Infrastructure...
  9. 9.Your company is migrating a monolithic e-commerce application to Oracle Cloud Infrastructure (OCI) and wants...
  10. 10.A gaming company is refactoring its monolithic platform into microservices on Oracle Cloud Infrastructure...
  11. 11.You have been tasked with migrating a monolithic e-commerce application to a microservices architecture on...
  12. 12.Your organization is deploying a microservices-based e-commerce application on Oracle Cloud Infrastructure...
  13. 13.Your company is migrating a multi-tiered e-commerce platform with multiple microservices from an on-premises...
  14. 14.You are designing a microservices-based ordering and inventory system on Oracle Cloud Infrastructure (OCI)...
  15. 15.You have developed a serverless function in Oracle Functions that processes orders for your e-commerce...
  16. 16.You have developed a serverless function on Oracle Cloud Infrastructure (OCI) to process large JSON payloads...
  17. 17.Your company has created a serverless application on Oracle Cloud Infrastructure using Oracle Functions to...
  18. 18.You have developed a serverless function in Oracle Cloud Infrastructure that processes user data. You want to...
  19. 19.You are creating a data analytics API on Oracle Cloud Infrastructure. Your team has deployed a serverless...
  20. 20.You have deployed an Oracle Functions-based serverless application to process incoming data. You now need to...
  21. 21.Your organization has developed a new microservice using Oracle Functions to process user data. You want to...
  22. 22.Your development team has started using Terraform to provision OCI resources. They have a large, distributed...
  23. 23.You are leading an initiative to implement an Infrastructure as Code approach for automating the provisioning...
  24. 24.You are leading the deployment of a multi-tier application on Oracle Cloud Infrastructure (OCI) using...
  25. 25.Your company is implementing Terraform-based Infrastructure as Code (IaC) on Oracle Cloud Infrastructure to...
  26. 26.You are tasked with creating an automated pipeline to provision multiple Compute instances in Oracle Cloud...
  27. 27.Your organization needs to provision both development and production environments in OCI using Terraform via...
  28. 28.Your company is deploying a multi-tier web application on Oracle Cloud Infrastructure (OCI) across staging...
  29. 29.You manage an online retail platform running in a primary OCI region with multiple Availability Domains. The...
  30. 30.You are designing a mission-critical order processing application on Oracle Cloud Infrastructure (OCI) using...
  31. 31.A financial services company runs a mission-critical transaction processing application in a primary OCI...
  32. 32.You are designing a mission-critical application on Oracle Cloud Infrastructure that must achieve near-zero...
  33. 33.You are designing a disaster recovery solution for a critical financial application hosted on Oracle Cloud...
  34. 34.Your organization runs a mission-critical banking application on Oracle Cloud Infrastructure (OCI)....
  35. 35.Your company hosts a mission-critical e-commerce application on Oracle Cloud Infrastructure (OCI), running...
  36. 36.You manage a high-traffic e-commerce application running in a single OCI region, deployed across multiple...
  37. 37.Your team is designing a disaster recovery strategy for a mission-critical e-commerce application deployed on...
  38. 38.A retail company has deployed their microservices-based e-commerce application on Oracle Container Engine for...
  39. 39.You are designing a mission-critical e-commerce application currently deployed in a single region (Phoenix),...
  40. 40.You are designing a mission-critical eCommerce application on Oracle Cloud Infrastructure (OCI) that must...
  41. 41.Your organization runs a mission-critical e-commerce site on Oracle Cloud Infrastructure (OCI). They require...
  42. 42.Your company hosts a mission-critical financial application on Oracle Cloud Infrastructure (OCI) using...
  43. 43.Your company is migrating its mission-critical e-commerce platform to Oracle Cloud Infrastructure. The...
  44. 44.Your organization is migrating a revenue-critical e-commerce application to Oracle Cloud Infrastructure...
  45. 45.You are designing a critical e-commerce application on Oracle Cloud Infrastructure (OCI) that must handle...
  46. 46.Your organization is migrating a revenue-critical e-commerce platform to Oracle Cloud Infrastructure (OCI)....
  47. 47.A global e-commerce company is designing a new platform on Oracle Cloud Infrastructure (OCI). They require...
  48. 48.You are designing a new e-commerce platform in Oracle Cloud Infrastructure (OCI) that must support users...
  49. 49.Your organization plans to deploy a new e-commerce platform on Oracle Cloud Infrastructure (OCI). The...
  50. 50.An e-commerce company is building a new application on Oracle Cloud Infrastructure that processes and stores...
  51. 51.Your company must comply with strict data security requirements on Oracle Cloud Infrastructure (OCI) 2025....
  52. 52.You are managing a microservices-based healthcare application on Oracle Container Engine for Kubernetes...
  53. 53.You are an OCI architect at a financial services company. They want their sensitive data in Object Storage to...
  54. 54.You are the lead architect for a financial services firm that manages sensitive customer data in Oracle Cloud...
  55. 55.You are an architect for a healthcare provider that needs to store personally identifiable information (PII)...
  56. 56.Your organization must maintain compliance by using encryption keys controlled outside Oracle Cloud but still...
  57. 57.You are designing a multi-tier e-commerce application on Oracle Cloud Infrastructure (OCI). The architecture...
  58. 58.Your organization is deploying a multi-tier e-commerce application on Oracle Cloud Infrastructure (OCI),...
  59. 59.Your organization is planning to deploy a multi-tier web application in Oracle Cloud Infrastructure (OCI)...
  60. 60.You are designing a multi-tier e-commerce application on Oracle Cloud Infrastructure (OCI). The application...
  61. 61.You are designing a three-tier web application on Oracle Cloud Infrastructure (OCI) with the following...
  62. 62.You�re tasked with designing a three-tier application on Oracle Cloud Infrastructure (OCI). Your design...
  63. 63.You are building a multi-tier application with a front-end web tier, an application tier, and a back-end...
  64. 64.You manage a containerized microservice in Oracle Container Engine for Kubernetes (OKE) that uses credentials...
  65. 65.Your organization stores application credentials in Oracle Cloud Infrastructure (OCI) Vault and needs to...
  66. 66.You have a web application deployed on Oracle Container Engine for Kubernetes (OKE) that uses database...
  67. 67.Your organization is deploying a set of microservices in Oracle Container Engine for Kubernetes (OKE). You...
  68. 68.You are designing a microservice on Oracle Cloud Infrastructure that needs to securely store and...
  69. 69.You have been tasked with implementing an automated secrets management solution in OCI Vault to rotate a...
  70. 70.Your organization is deploying a microservices-based application in an Oracle Container Engine for Kubernetes...
  71. 71.Your organization hosts a mission-critical OLTP database on an Oracle Cloud Infrastructure Virtual Machine DB...
  72. 72.Your organization has deployed a production Oracle Database on a VM DB System in the Phoenix region. You�ve...
  73. 73.You have deployed a single-instance Oracle Database on the VM.Standard.E3 shape in OCI for a mission-critical...
  74. 74.You are deploying a mission-critical Oracle Database in OCI that processes large transaction volumes. The...
  75. 75.Your company hosts a mission-critical transaction processing system on an Oracle Database VM DB System in...
  76. 76.You are migrating a mission-critical, 10 TB Oracle database from on-premises to OCI and need to minimize...
  77. 77.A financial services organization is running a mission-critical Oracle Database on Oracle Cloud...
  78. 78.Your company manages a high-volume e-commerce platform that must support a mix of transactional requests...
  79. 79.Your organization is migrating a critical OLTP application to Oracle Cloud Infrastructure (OCI). They want...
  80. 80.Your on-premises Oracle Database supports a mission-critical analytics workload. The data volume grows...
  81. 81.Your organization currently maintains a set of on-premises Oracle Databases primarily supporting...
  82. 82.Your finance department plans to adopt a new database on Oracle Cloud Infrastructure to handle high-volume...
  83. 83.Your organization is launching a new e-commerce platform on Oracle Cloud Infrastructure (OCI). The platform...
  84. 84.Your organization is migrating a 10 TB on-premises Oracle Database to Oracle Cloud Infrastructure. The...
  85. 85.Your team has reported significantly slower query performance on an Oracle Database running on a VM DB System...
  86. 86.You are administering a mission-critical Oracle Database on a Bare Metal DB System in Oracle Cloud...
  87. 87.You have recently deployed an Oracle Autonomous Data Warehouse instance on Oracle Cloud Infrastructure to...
  88. 88.You manage an Oracle Database system running on Oracle Cloud Infrastructure (OCI) that encounters a daily...
  89. 89.You manage an Oracle Database running on an OCI VM DB System that was previously stable. Recently, queries...
  90. 90.You are managing an Oracle Database on an OCI VM DB System. After deploying a new index to optimize reporting...
  91. 91.You are managing a DB System in Oracle Cloud Infrastructure that is experiencing high CPU utilization and...
  92. 92.You are running a high-traffic online gaming platform on Oracle Cloud Infrastructure (OCI). Your...
  93. 93.You are designing a high-traffic e-commerce application on Oracle Cloud Infrastructure (OCI). A major...
  94. 94.You are building a microservices-based e-commerce platform on Oracle Cloud Infrastructure (OCI). The product...
  95. 95.Your e-commerce application on Oracle Cloud Infrastructure (OCI) frequently handles thousands of reads per...
  96. 96.You are running a distributed e-commerce application on Oracle Cloud Infrastructure (OCI) that relies heavily...
  97. 97.You manage a high-traffic e-commerce platform on Oracle Cloud Infrastructure (OCI) that experiences frequent...
  98. 98.You have a microservices-based eCommerce application hosted on Oracle Container Engine for Kubernetes (OKE)....
  99. 99.A pharmaceutical company has a research workload that heavily relies on high-bandwidth, low-latency data...
  100. 100.Your organization runs a mission-critical data analytics application that collects logs from an on-premises...
  101. 101.Your company has a production workload split between Oracle Cloud Infrastructure (OCI) and Microsoft Azure....
  102. 102.You have been tasked with designing a hybrid identity solution for a global financial services firm that...
  103. 103.An international manufacturing company is expanding into multi-cloud with workloads in Oracle Cloud...
  104. 104.Your company runs data-intensive workloads on-premises and needs to extend these workloads to the cloud for...
  105. 105.Your organization wants to design a hybrid and multicloud architecture spanning an on-premises data center,...
  106. 106.Your organization is deploying Oracle Database@Azure for critical transactional workloads and needs to...
  107. 107.A financial services company is migrating a multi-tier application that resides partially in Microsoft Azure...
  108. 108.Your company is deploying a multi-tier application that spans Oracle Cloud Infrastructure (OCI) and Microsoft...
  109. 109.You have deployed an Oracle Database@Azure instance for a mission-critical application and established the...
  110. 110.Your organization runs an application tier in Microsoft Azure and leverages Oracle Database@Azure for...
  111. 111.Your company has deployed Oracle Database@Azure in a private subnet of an Azure Virtual Network (VNet) and...
  112. 112.Your organization has deployed Oracle Database@Azure and wants to establish secure, low-latency communication...
  113. 113.Your organization currently hosts a critical financial database on Oracle Cloud Infrastructure (OCI), but you...
  114. 114.Your organization has an e-commerce platform with microservices currently running in AWS, and you plan to...
  115. 115.Your organization is running a customer portal in Oracle Cloud Infrastructure (OCI) but relies on real-time...
  116. 116.Your company is deploying a data analytics platform that spans Oracle Cloud Infrastructure (OCI) and another...
  117. 117.A data science team needs to integrate Oracle Autonomous Database running in Oracle Cloud Infrastructure...
  118. 118.Your organization stores large volumes of confidential customer data in Oracle Cloud Infrastructure (OCI) and...
  119. 119.Your organization is designing a data analytics solution that combines data from a microservices-based...
  120. 120.Your organization is planning a hybrid cloud architecture that extends its on-premises VMware environment...
  121. 121.Your financial services company hosts a critical on-premises VMware vSphere environment and plans to extend...
  122. 122.An insurance firm maintains a critical on-premises VMware environment for its underwriting systems. They plan...
  123. 123.You have an on-premises VMware vSphere environment that you want to extend into Oracle Cloud VMware Solution...
  124. 124.You are an infrastructure architect at a financial services firm that wants to extend its on-premises VMware...
  125. 125.Your company runs critical workloads on an on-premises VMware environment and wants to migrate them to Oracle...
  126. 126.A financial services company wants to extend their existing VMware vSphere 7 environment into Oracle Cloud...
  127. 127.Your organization runs a critical Oracle Database@Google Cloud instance for data storage while hosting...
  128. 128.You have set up Oracle Interconnect for Google Cloud to build a private, low-latency link between your Oracle...
  129. 129.You are a lead architect for a large retail enterprise migrating an existing Oracle Database to Oracle...
  130. 130.You have just deployed an Oracle Database@Google Cloud instance, and you need to connect it securely to an...
  131. 131.You are setting up Oracle Interconnect for Google Cloud so that an application running in Oracle Cloud...
  132. 132.You have been tasked with creating a secure, low-latency connection between an Oracle Database instance...
  133. 133.A retail company plans to run its Oracle Database on Google Cloud using Oracle Database@Google Cloud, while...
  134. 134.You are migrating a large, mission-critical Oracle Database from your on-premises data center to an...
  135. 135.You are an OCI Architect tasked with migrating a 15 TB on-premises Oracle Database to Oracle Cloud...
  136. 136.Your organization is planning to migrate a critical Oracle 19c Database from on-premises to Oracle Cloud...
  137. 137.A healthcare provider needs to migrate its large, mission-critical patient management database from an...
  138. 138.A medical research organization needs to migrate approximately 100 TB of internal patient data to Oracle...
  139. 139.Your organization needs to migrate an on-premises workload that includes a mission-critical Oracle Database...
  140. 140.Your organization is planning to migrate a 10 TB on-premises Oracle Database to OCI. Network bandwidth is...
  141. 141.Your company is migrating 50 production virtual machines (VMs) from an on-premises data center to Oracle...
  142. 142.Your team is migrating a multi-tier e-commerce application from an on-premises data center to Oracle Cloud...
  143. 143.Your company needs to migrate a mission-critical, multi-VM application from an on-premises virtualized...
  144. 144.Your company needs to migrate a set of on-premises virtual machines (running both Linux and Windows) to...
  145. 145.Your company is planning to migrate a mission-critical, multi-tier web application from its on-premises data...
  146. 146.You are migrating an on-premises e-commerce application comprised of multiple web, application, and database...
  147. 147.Your organization is migrating a mission-critical multi-tier workload from an on-premises data center to...
  148. 148.Your organization needs to migrate a 20 TB Oracle Database 19c from an on-premises data center to an OCI DB...
  149. 149.Your organization is migrating a large on-premises Oracle Database to Oracle Exadata Cloud Infrastructure...
  150. 150.You are tasked with migrating a large (5 TB) on-premises Oracle Database (version 19c) to an Oracle...
  151. 151.Your organization is migrating a 3 TB Oracle Database from on-premises to an Oracle Cloud Infrastructure...
  152. 152.You are a solutions architect for a manufacturing company planning to migrate a 2 TB on-premises Oracle...
  153. 153.You have just used the Data Pump network import feature to migrate an on-premises Oracle Database 19c to an...
  154. 154.Your organization is migrating a 20 TB on-premises Oracle Database to an Oracle Database Cloud Service on...
  155. 155.You have a multi-tier application running on Oracle Kubernetes Engine (OKE) that generates large volumes of...
  156. 156.Your organization has deployed a microservices-based application on Oracle Container Engine for Kubernetes...
  157. 157.You are designing a new observability solution for a distributed application running across Oracle Container...
  158. 158.You have a containerized microservices application running on Oracle Container Engine for Kubernetes (OKE)....
  159. 159.Your organization has deployed a series of microservices on an Oracle Container Engine for Kubernetes (OKE)...
  160. 160.Your organization runs a containerized application on Oracle Container Engine for Kubernetes (OKE) and uses...
  161. 161.You have a microservices-based application running on Oracle Kubernetes Engine (OKE) and need to aggregate...
  162. 162.Your company hosts a distributed application consisting of custom microservices on OCI Compute instances as...
  163. 163.An e-commerce application running on multiple OCI Compute instances behind a Load Balancer is experiencing...
  164. 164.Your organization runs multiple microservices in dev, QA, and production compartments within a single OCI...
  165. 165.You have deployed multiple microservices on Oracle Container Engine for Kubernetes (OKE). The application is...
  166. 166.You manage a multi-tier enterprise application running in multiple OCI compartments. The application team...
  167. 167.You have a microservices application running on Oracle Container Engine for Kubernetes (OKE). You need to...
  168. 168.You manage a microservices-based application running on multiple Oracle Cloud Infrastructure (OCI)...
  169. 169.Your organization recently discovered unplanned cost overruns in the Dev compartment caused by unauthorized...
  170. 170.Your organization has a 'Dev' compartment in OCI where multiple teams deploy services. Management wants to...
  171. 171.You are working as a Cloud Architect for a large organization looking to enforce cost center tagging on all...
  172. 172.Your organization has multiple departments using separate compartments in OCI. You must prevent any...
  173. 173.Your organization has encountered unexpected monthly cost spikes in a shared compartment due to multiple...
  174. 174.Your organization is rolling out a governance and cost-optimization initiative for multiple lines of business...
  175. 175.Your organization is expanding its deployment on Oracle Cloud Infrastructure (OCI) and needs to ensure strict...

1Z0-997-25 exam dumps FAQ

Are these 1Z0-997-25 dumps real exam questions?

No. These are original practice questions written to the Oracle Cloud Infrastructure 2025 Architect Professional exam objectives, not questions copied from a live exam. Memorising leaked questions violates Oracle's candidate agreement and stops working the moment the question pool rotates. Use this bank to check your understanding of each domain and to find the topics you still need to study.

How many 1Z0-997-25 practice questions are there?

175 questions, each with the correct answer, an explanation of the answer, and a note on why every other option is wrong. The first 10 are on this page and every question has its own page linked below.

Are the 1Z0-997-25 exam dumps free?

Yes. Every question, answer and explanation on this page and the linked question pages is free to read without an account. A free HydraNode account adds timed practice exams, scoring and progress tracking across attempts.

How do I take a timed 1Z0-997-25 practice test?

Sign in and start the Oracle Cloud Infrastructure 2025 Architect Professional exam on HydraNode. A session gives you 60 questions drawn from this bank in 90 minutes, then a score report with a per-question review.

What topics does the 1Z0-997-25 exam cover?

The official exam domains are: Design and Architecture; Infrastructure and Platform Services; Security and Compliance; Operations and Migration.