OracleProfessional level1Z0-1067-25

1Z0-1067-25 exam dumps: 138 free OCI 2025 Cloud Operations Professional practice questions

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

Question bank last updated May 2025

Free 1Z0-1067-25 practice questions

Questions 1 to 10 of 138

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

1Z0-1067-25 Question 1

Single answer

Your organization manages three separate compartments in Oracle Cloud Infrastructure (OCI) for development, testing, and production. You need to ensure each new environment applies mandatory tags to resources and remains consistent across all compartments. Which approach best achieves this objective?

  1. A

    Use OCI Resource Manager with a single Terraform configuration. Leverage variables for environment-specific details and set up tag defaults in each compartment.

  2. B

    Use the OCI Console to manually deploy resources for each environment, applying tags by hand as needed.

  3. C

    Create environment-specific CLI scripts without referencing any tagging structure, relying on manual checks to ensure tagging compliance.

  4. D

    Maintain separate Resource Manager stacks for each environment, leaving tags optional for teams to apply.

Show answer and explanation

Correct answer: A

Explanation

Using OCI Resource Manager as an Infrastructure as Code (IaC) solution with Terraform is the recommended approach to create consistent, repeatable deployments across multiple environments. Employing variables for environment-specific values allows for easy scalability and maintainability, while configuring tag defaults in each compartment ensures that mandatory tags are automatically and uniformly applied to newly created resources. For further details on tag defaults and Terraform best practices, refer to Oracle� documentation on Resource Manager and managing tags in the OCI console.

  • A. Correct.

    Option 1 is correct. By using a single Terraform configuration for multiple environments, you can parameterize environment-specific settings through variables, ensuring consistent deployment. Additionally, configuring tag defaults in each compartment guarantees that required tags are automatically applied to any new resource, reducing the risk of manual errors and ensuring uniformity.

  • B. Incorrect.

    Option 2 is incorrect. While using the OCI Console can work for small environments, manual deployments and tagging often lead to inconsistent configurations and increased operational overhead. It also becomes more challenging to audit and version-control these changes.

  • C. Incorrect.

    Option 3 is incorrect. Relying on custom CLI scripts without an automated tagging structure complicates compliance and consistency efforts. Human error in updates can result in missing mandatory tags and inconsistencies in deployed resources.

  • D. Incorrect.

    Option 4 is incorrect. While having separate stacks can make sense for certain scaling or isolation requirements, keeping tags optional undermines the goal of consistent compliance. Mandatory tagging should be enforced through tag defaults or required attributes, not left to individual teams.

1Z0-1067-25 Question 2

Select 2

You are creating a new application environment in Oracle Cloud Infrastructure (OCI) using Resource Manager. The environment requires that all compute instances be provisioned in a dedicated compartment with the VM.Standard3.Flex shape, that each resource be tagged with a department cost-tracking key, and that you can easily re-deploy the entire environment if needed. Which two actions must you take to ensure your deployment meets these requirements?

  1. A

    A. Define Terraform variables for the compartment and shape in your configuration, then upload the configuration as a stack to Resource Manager.

  2. B

    B. Explicitly define the compartment and shape in the OCI Console before creating any instances, then import those resources into Resource Manager.

  3. C

    C. Configure a tag namespace with a key for department cost tracking, and reference that key in your Terraform resource definitions.

  4. D

    D. Use a manual workflow to add the department tag to each resource after the instances are provisioned.

Show answer and explanation

Correct answers: A, C

Explanation

To automate resource provisioning with consistent shapes, compartments, and tags, you should leverage Oracle Resource Manager's stack-based workflows. By defining Terraform variables and referencing tags within the Terraform configurations, you ensure each new resource follows your standards without manual intervention. This approach also allows for straightforward environment re-deployment. For more information, refer to the official Oracle Cloud Infrastructure Resource Manager documentation at https://docs.oracle.com/en-us/iaas/Content/ResourceManager/Concepts/resourcemanager.htm.

  • A. Correct.

    A. Correct. Defining Terraform variables for the compartment and shape allows you to systematically control your resource configuration. Uploading the configuration as a Resource Manager stack ensures that all subsequent deployments match these parameters.

  • B. Incorrect.

    B. Incorrect. While you can provision resources via the console first and then import them into Resource Manager, this approach is more cumbersome and doesn't inherently guarantee that subsequent resources meet the shape and compartment requirements. It also complicates automation.

  • C. Correct.

    C. Correct. Creating a tag namespace and tagging key helps enforce consistent cost-tracking. Including that tag reference in your Terraform resource blocks ensures the tag is automatically applied each time those resources are provisioned.

  • D. Incorrect.

    D. Incorrect. Manually adding tags is error-prone and does not align with the automated approach that Resource Manager provides. To reliably ensure each resource is tagged, you should define the tags in your IaC (Infrastructure as Code) templates or a tagging policy.

1Z0-1067-25 Question 3

Single answer

You have a running Compute instance in Oracle Cloud Infrastructure (OCI) 2025 located in a 'Dev' compartment, but your organization now requires the instance to be managed under the 'Prod' compartment for compliance. You want to minimize downtime and avoid recreating resources. Which approach should you take?

  1. A

    Use the 'Move Resource to Another Compartment' functionality in the OCI Console or API, ensuring 'Prod' has the necessary IAM policies in place to host the instance.

  2. B

    Terminate the instance in 'Dev' and recreate it in 'Prod' using a custom image, ensuring you replicate all associated resources manually.

  3. C

    Open a service request with Oracle Support to export the instance configuration and then import it into the 'Prod' compartment.

  4. D

    Edit the instance's metadata to change the compartment attribute to 'Prod' and restart the instance to apply the change.

Show answer and explanation

Correct answer: A

Explanation

In OCI 2025, you can use the 'Move Resource to Another Compartment' feature to relocate resources such as Compute instances without terminating them. Before moving resources, ensure the target compartment has the correct IAM policies granting required permissions. Refer to the official Oracle Cloud Infrastructure documentation on moving resources between compartments for additional details and best practices.

  • A. Correct.

    Correct. OCI supports moving many resource types, including Compute instances, between compartments without terminating them. You must ensure appropriate IAM policies exist in the target compartment. This approach minimizes resource downtime.

  • B. Incorrect.

    Incorrect. While this method eventually places the instance in the 'Prod' compartment, it involves unnecessary downtime and manual replication of resources, which is not the recommended approach.

  • C. Incorrect.

    Incorrect. Moving resources between compartments is an OCI feature you can perform directly in the Console or via the API. You do not need to open a service request for this task.

  • D. Incorrect.

    Incorrect. Simply editing metadata is not a supported method for changing a resource� compartment. The correct procedure involves using the OCI Console or API to perform a compartment move.

1Z0-1067-25 Question 4

Single answer

You manage a multi-tier application on Oracle Cloud Infrastructure (OCI) and need to consistently deploy and manage the same set of resources (Compute instances, networking components, and autonomous database) across multiple environments (Dev, Test, and Production). Which approach provides the most efficient way to replicate and manage these resources in a standardized manner?

  1. A

    Manually create each environment through the OCI Console steps every time

  2. B

    Use Terraform-based stack definitions in Oracle Resource Manager to automate deployments

  3. C

    Rely on custom shell scripts exclusively to clone resources from one environment to another

  4. D

    Create a single large compartment containing all environments for easier administration

Show answer and explanation

Correct answer: B

Explanation

Terraform-based automation through Oracle Resource Manager is a recommended best practice for standardizing resource deployment. This infrastructure-as-code approach ensures consistent environments, easy updates, and clear version control. Refer to the Oracle Cloud Infrastructure Resource Manager documentation for guidelines on creating and managing stacks with Terraform for multi-environment deployments.

  • A. Incorrect.

    Manual creation through the OCI Console is error-prone and does not ensure consistent replication of environments, especially when the setup grows more complex.

  • B. Correct.

    Using Terraform-based stack definitions in Oracle Resource Manager allows you to define and version your configurations as code, ensuring fast, repeatable, and error-free environments deployment across stages.

  • C. Incorrect.

    Shell scripts might reduce some manual work, but they can become difficult to maintain, are less standardized than Terraform, and may not integrate as cleanly with Oracle Resource Manager.

  • D. Incorrect.

    Combining all environments into a single compartment is discouraged because it mixes dev, test, and production resources, complicating security, billing, and access control.

1Z0-1067-25 Question 5

Select 2

Your organization is preparing to deploy a new microservices-based application in Oracle Cloud Infrastructure (OCI) across separate Development, Testing, and Production compartments. The team needs a consistent way to define and manage infrastructure for each environment, track and review all infrastructure changes, and quickly roll back if necessary. Which TWO approaches align with OCI best practices for deploying and managing these resources?

  1. A

    Use Infrastructure as Code with Terraform managed by OCI Resource Manager, store your Terraform files in a version control repository, and create separate stacks for each environment.

  2. B

    Use a single Terraform stack for all environments, specifying environment variables at runtime from the command line without version control integration.

  3. C

    Implement a CI/CD pipeline that automatically runs Terraform validation and plan steps in the Development and Testing compartments first, then applies changes to Production upon approval, storing all Terraform code in a Git repository.

  4. D

    Manually provision identical resources in each environment using the OCI Console and keep configuration details in an offline spreadsheet for tracking changes.

  5. E

    Use a locally stored custom script with the OCI CLI to generate resource definitions in YAML files, updated separately for each environment without a shared repository.

Show answer and explanation

Correct answers: A, C

Explanation

Oracle Cloud Infrastructure recommends using Infrastructure as Code (IaC) and a version control system to ensure consistency, repeatability, and traceability across your environments. By adopting Terraform with OCI Resource Manager and integrating with CI/CD pipelines, teams can validate changes in Development and Testing compartments before safely promoting them to Production. For additional guidance, consult the OCI Resource Manager documentation at https://docs.oracle.com/en-us/iaas/Content/ResourceManager/Concepts/resource-manager-overview.htm.

  • A. Correct.

    Correct. Managing resources with Infrastructure as Code and using OCI Resource Manager for separate Terraform stacks in each environment is a recommended approach. Storing the Terraform files in a version control system (like Git) allows you to track, review, and roll back changes easily.

  • B. Incorrect.

    Incorrect. Using a single Terraform stack without version control provides limited visibility into environment-specific changes and makes it challenging to audit or roll back configurations over time.

  • C. Correct.

    Correct. A CI/CD pipeline that validates and plans Terraform changes in lower environments before applying them in Production follows best practices. Storing code in a Git repository ensures consistent tracking, review, and rollback capabilities.

  • D. Incorrect.

    Incorrect. Manually replicating resources across multiple environments is prone to human error and does not provide a straightforward method for auditing or rolling back changes, which goes against recommended Infrastructure as Code practices.

  • E. Incorrect.

    Incorrect. While the OCI CLI is useful, storing YAML definitions in a local directory without a centralized version control system or automation introduces complexity. It does not offer the same repeatability and traceability as Terraform-based Infrastructure as Code with proper version control.

1Z0-1067-25 Question 6

Select 2

Your organization is deploying a multi-tier application using Oracle Cloud Infrastructure (OCI) Resource Manager with Terraform. Different teams have created separate compartments for production and development resources. However, when you run your Resource Manager job, it fails with authorization errors indicating that required operations are not permitted in the target compartments. You need to fix these errors so you can deploy resources across multiple compartments in a single Terraform run. Which two actions should you take to resolve this issue?

  1. A
    1. Update or create appropriate IAM policies in the root compartment granting the Resource Manager service the ability to manage resources in the target compartments.
  2. B
    1. Configure your Resource Manager Stack to use separate tenancy IDs for each compartment to avoid permission conflicts.
  3. C
    1. Specify the compartment OCID for each resource in the Terraform configuration (e.g., using the 'compartment_id' attribute) to ensure resources are created in the intended compartments.
  4. D
    1. Add a local Terraform variable file that only includes the target_compartment IDs, so Resource Manager does not require cross-compartment access.
Show answer and explanation

Correct answers: A, C

Explanation

To deploy and manage OCI resources across multiple compartments using Resource Manager, you must grant Resource Manager the appropriate IAM policies and specify the correct compartment IDs in your Terraform configuration. Refer to the Oracle Cloud Infrastructure documentation on Resource Manager and IAM policies (https://docs.oracle.com/en-us/iaas/Content/ResourceManager/Concepts/resourcemanager.htm and https://docs.oracle.com/en-us/iaas/Content/Identity/Concepts/policygetstarted.htm) for detailed guidance on setting up cross-compartment access.

  • A. Correct.

    Option 1: CORRECT. The Resource Manager service (or the user/group running it) must have explicit IAM permissions to create and manage resources in different compartments. Creating or updating a policy in the root compartment to allow these operations is essential. Without proper IAM policies, Resource Manager is blocked from acting within the target compartments.

  • B. Incorrect.

    Option 2: INCORRECT. A single tenancy ID is used for your overall OCI tenancy. You do not configure multiple tenancy IDs for separate compartments. Compartments are logical subdivisions within the same tenancy. Thus, using separate tenancy IDs is not a valid approach.

  • C. Correct.

    Option 3: CORRECT. In your Terraform configuration, each resource must specify the correct target compartment (for example, using 'compartment_id' = var.prod_compartment_ocid) to ensure that the resource is deployed where you intend. This step is crucial when deploying into multiple compartments.

  • D. Incorrect.

    Option 4: INCORRECT. Simply storing compartment IDs in a local variable file does not eliminate the need for Resource Manager to have permissions to manage resources across compartments. It also does not replace the requirement to define the correct compartment for each resource in Terraform.

1Z0-1067-25 Question 7

Select 3

You are working as a Cloud Ops engineer for a SaaS provider that needs to stand up a new public-facing microservice in Oracle Cloud Infrastructure (OCI). You have created a custom VCN and a public subnet for your Compute instance. The microservice must be accessible from the public internet for incoming HTTP requests. Which three steps must you take (at a minimum) to ensure external clients can reach your instance?

  1. A

    Create and attach an Internet Gateway to your VCN

  2. B

    Assign a public IP address to your instance

  3. C

    Create a NAT Gateway for outbound traffic from your instance

  4. D

    Add a route rule in the route table to direct 0.0.0.0/0 to the Internet Gateway

  5. E

    Configure a Service Gateway for your instance

  6. F

    Launch the instance in a private subnet instead of a public subnet

Show answer and explanation

Correct answers: A, B, D

Explanation

To manually deploy a public-facing instance in OCI, you must attach an Internet Gateway to your VCN, assign a public IP to the instance, and create a route rule sending 0.0.0.0/0 traffic to the Internet Gateway. These are the fundamental steps for inbound and outbound internet connectivity. In addition, you must configure security rules (via Security Lists or Network Security Groups) to allow incoming traffic on the desired ports. Refer to Oracle Cloud Infrastructure Networking documentation for best practices on creating and configuring subnets, gateways, and route tables.

  • A. Correct.

    Option 1: Create and attach an Internet Gateway to your VCN. Correct. The Internet Gateway is essential for allowing external internet traffic to enter your VCN. Without it, your instance cannot be reached directly from external networks.

  • B. Correct.

    Option 2: Assign a public IP address to your instance. Correct. A public IP address is necessary if you want your instance to be directly addressable from the internet. Without a public IP or a Public Load Balancer in front, external clients cannot route traffic directly to your instance.

  • C. Incorrect.

    Option 3: Create a NAT Gateway for outbound traffic from your instance. Incorrect. NAT Gateways allow private subnet hosts to initiate outbound connections to the internet. They do not enable inbound connections from the internet to your instance.

  • D. Correct.

    Option 4: Add a route rule in the route table to direct 0.0.0.0/0 to the Internet Gateway. Correct. Even if you have an Internet Gateway attached, you must explicitly define in your route table that all external traffic (0.0.0.0/0) should be sent to that gateway. Without this route rule, the traffic will not be forwarded to the internet.

  • E. Incorrect.

    Option 5: Configure a Service Gateway for your instance. Incorrect. A Service Gateway is used to enable private access to Oracle services (such as Object Storage) without traversing the public internet. It does not facilitate public internet connectivity to your instance.

  • F. Incorrect.

    Option 6: Launch the instance in a private subnet instead of a public subnet. Incorrect. Using a private subnet prevents direct access from the internet, unless you use additional services such as a Public Load Balancer. For direct public connectivity, a public subnet is required.

1Z0-1067-25 Question 8

Single answer

You are manually deploying a new VCN and subnets in Oracle Cloud Infrastructure for an application running on a compute instance in a private subnet. The application must periodically download security updates from the public internet without exposing the instance directly. Which manual configuration step must you implement to enable the instance to fetch updates from the internet while keeping it private?

  1. A

    Create an Internet Gateway and update the private subnet� route table to send all outbound traffic (0.0.0.0/0) to the Internet Gateway.

  2. B

    Create a NAT Gateway and update the private subnet� route table to send all outbound traffic (0.0.0.0/0) to the NAT Gateway.

  3. C

    Assign a public IP address to the instance in the private subnet to allow direct public internet access.

  4. D

    Create a service gateway for Internet-bound traffic on the private subnet.

Show answer and explanation

Correct answer: B

Explanation

When deploying core OCI services manually, a NAT Gateway is recommended for granting private instances outbound internet connectivity without exposing them to inbound traffic. You must create the NAT Gateway and update your private subnet's route table to direct 0.0.0.0/0 traffic to the NAT Gateway. This ensures instances remain private while still being able to download security patches or connect to other internet resources. Refer to the Oracle Cloud Infrastructure Networking documentation for best practices on creating and configuring NAT Gateways.

  • A. Incorrect.

    Incorrect. While an Internet Gateway allows inbound and outbound internet connectivity, configuring a subnet route table to direct internet traffic through an Internet Gateway would expose resources publicly. This would defeat the privacy requirement.

  • B. Correct.

    Correct. A NAT Gateway enables instances in a private subnet to access the public internet for outbound connections (e.g., for software updates), without allowing inbound connections from the internet, thus preserving the private nature of the subnet.

  • C. Incorrect.

    Incorrect. Attaching a public IP addresses the need for internet access but violates the privacy requirement because the instance would be directly reachable from the internet.

  • D. Incorrect.

    Incorrect. A service gateway provides private access to specific Oracle services (like Object Storage) without traversing the public internet. It does not enable general outbound internet traffic.

1Z0-1067-25 Question 9

Select 2

You have deployed an Oracle Cloud Infrastructure environment with multiple subnets in a single VCN. One of the subnets is private, where application servers need to retrieve configuration files from Object Storage without exposing them to the public Internet. What two manual steps must you take to enable outbound connectivity for the private instances to access Object Storage?

  1. A

    Create a Service Gateway in your VCN and add a route table entry for OCI services pointed to the Service Gateway.

  2. B

    Add an Internet Gateway and attach a public IP to the private subnet instances.

  3. C

    Establish a local peering gateway to link the private subnet with the Object Storage compartment.

  4. D

    Update the private subnet� security list or network security group to allow outbound HTTPS (TCP/443) to OCI regional services.

Show answer and explanation

Correct answers: A, D

Explanation

Enabling private subnet instances to reach Object Storage securely requires two key actions: deploying a Service Gateway and configuring the subnet route table to direct OCI service traffic to that gateway, and allowing outbound HTTPS traffic in the subnet� security rules. This ensures access to Object Storage remains private. Refer to OCI Networking documentation on Service Gateways, route tables, and security lists for best practices.

  • A. Correct.

    Option 1 is correct. A Service Gateway allows private subnets to access OCI services like Object Storage without routing traffic over the public Internet. You also need a corresponding route table entry so the private subnet knows how to reach Object Storage through the Service Gateway.

  • B. Incorrect.

    Option 2 is incorrect. Using an Internet Gateway with publicly routable IP addresses would expose the private subnet to the public Internet, contradicting the requirement to keep instances private.

  • C. Incorrect.

    Option 3 is incorrect. A local peering gateway is used to connect two VCNs in the same region, not to connect a private subnet directly to Object Storage.

  • D. Correct.

    Option 4 is correct. Even with a Service Gateway, the private subnet must allow outbound HTTPS (443) traffic in a security list or network security group to ensure the instances can communicate with Object Storage.

1Z0-1067-25 Question 10

Select 2

You recently created a compute instance with a public IP address in a newly created Virtual Cloud Network (VCN) that has only default components. However, you are unable to SSH into that instance from the public internet. Which three steps must you manually verify or perform to allow inbound SSH traffic?

  1. A

    Manually create an Internet Gateway in your VCN.

  2. B

    Set up a NAT Gateway to handle inbound SSH connections from the public internet.

  3. C

    Add a route rule for 0.0.0.0/0 to the Internet Gateway in your VCN� route table.

  4. D

    Create an ingress rule for TCP port 22 in the security list or network security group associated with the instance.

Show answer and explanation

Correct answers: B, C

Explanation

When deploying core services manually, allowing external access to your newly created instances requires ensuring an Internet Gateway is present, creating a route rule for traffic destined for the public internet (0.0.0.0/0) to point to the Internet Gateway, and configuring your security lists or network security groups to allow inbound SSH on port 22. A NAT Gateway is used for outbound connections, not inbound. For detailed guidance, refer to Oracle Cloud Infrastructure networking documentation at https://docs.oracle.com/en-us/iaas/Content/Network/Concepts/overview.htm.

  • A. Incorrect.

    Correct: You must create an Internet Gateway to enable external inbound traffic into your VCN. By default, a newly created VCN does not include an Internet Gateway.

  • B. Correct.

    Incorrect: A NAT Gateway supports outbound internet access for resources in private subnets, not inbound connections from the public internet.

  • C. Correct.

    Correct: You must explicitly route all internet-bound traffic (0.0.0.0/0) to the Internet Gateway in your route table. Without this route, inbound traffic is dropped.

  • D. Incorrect.

    Correct: Security lists or network security groups need an ingress rule for port 22 (SSH). By default, the security list does not permit arbitrary inbound SSH traffic.

Timed practice exam

Take a 1Z0-1067-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-1067-25 exam covers

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

  • Managing and Monitoring OCI Resources

    30% of exam

  • Cost Management and Optimization

    25% of exam

  • Operations and Automation

    25% of exam

  • Governance and Compliance

    20% of exam

All 138 1Z0-1067-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.Your organization manages three separate compartments in Oracle Cloud Infrastructure (OCI) for development,...
  2. 2.You are creating a new application environment in Oracle Cloud Infrastructure (OCI) using Resource Manager....
  3. 3.You have a running Compute instance in Oracle Cloud Infrastructure (OCI) 2025 located in a 'Dev' compartment,...
  4. 4.You manage a multi-tier application on Oracle Cloud Infrastructure (OCI) and need to consistently deploy and...
  5. 5.Your organization is preparing to deploy a new microservices-based application in Oracle Cloud Infrastructure...
  6. 6.Your organization is deploying a multi-tier application using Oracle Cloud Infrastructure (OCI) Resource...
  7. 7.You are working as a Cloud Ops engineer for a SaaS provider that needs to stand up a new public-facing...
  8. 8.You are manually deploying a new VCN and subnets in Oracle Cloud Infrastructure for an application running on...
  9. 9.You have deployed an Oracle Cloud Infrastructure environment with multiple subnets in a single VCN. One of...
  10. 10.You recently created a compute instance with a public IP address in a newly created Virtual Cloud Network...
  11. 11.Your organization needs to deploy a new application in Oracle Cloud Infrastructure so it can accept inbound...
  12. 12.You are manually deploying a new high-performance computing (HPC) environment in Oracle Cloud Infrastructure....
  13. 13.You have an ephemeral environment with multiple compute instances named 'stage-app' in your development...
  14. 14.You are setting up an ephemeral testing environment in the us-phoenix-1 region using the Ubuntu 20.04 image...
  15. 15.Your team has just finished developing a new application for the dev environment. You are asked to provision...
  16. 16.You are tasked with launching a temporary compute instance in your development compartment using the OCI CLI....
  17. 17.You have been asked to provision a temporary OCI Compute instance for a short-lived testing environment....
  18. 18.Your development team wants to implement a nightly test environment pipeline using the OCI CLI. The pipeline...
  19. 19.You are managing a multi-tier application on Oracle Cloud Infrastructure (OCI) using Terraform. The stack...
  20. 20.Your organization must replicate a multi-tier application environment across Dev, Staging, and Production...
  21. 21.You have a Terraform configuration that successfully deploys a multi-tier application, including VCNs,...
  22. 22.You are managing a multi-tier application stack that needs to be deployed across two different OCI regions...
  23. 23.You are responsible for deploying a three-tier web application across multiple environments (development,...
  24. 24.Your DevOps team is building a new microservices-based e-commerce platform in Oracle Cloud Infrastructure...
  25. 25.You are a Cloud Ops Professional responsible for deploying an application across multiple environments in...
  26. 26.You have been assigned to standardize the provisioning and maintenance of a fleet of compute instances...
  27. 27.Your DevOps team is using Ansible with the Oracle Cloud Infrastructure (OCI) Ansible Collection to manage...
  28. 28.You need to manage and maintain consistent configurations for several Oracle Cloud Infrastructure (OCI)...
  29. 29.Your organization frequently launches and terminates multiple Compute instances in Oracle Cloud...
  30. 30.Your team manages a set of Oracle Linux compute instances in Oracle Cloud Infrastructure, each requiring...
  31. 31.Your team manages an application across multiple environments (development, staging, and production) in...
  32. 32.Your organization uses Chef to manage compute instance configurations on Oracle Cloud Infrastructure. The...
  33. 33.You are responsible for deploying a new microservices application on Oracle Cloud Infrastructure (OCI). Your...
  34. 34.You are deploying a new Terraform stack using Oracle Resource Manager to configure resources across multiple...
  35. 35.You are a Cloud Ops Professional responsible for automatically configuring newly launched compute instances...
  36. 36.You are managing a growing fleet of OCI Compute instances and need to ensure consistency in environment...
  37. 37.You are launching a new Oracle Linux compute instance in Oracle Cloud Infrastructure to run an Apache web...
  38. 38.You are launching a pool of Linux compute instances in Oracle Cloud Infrastructure (OCI) that require a...
  39. 39.You are provisioning a new Linux compute instance in Oracle Cloud Infrastructure (OCI). During...
  40. 40.You have launched an Oracle Linux 8 compute instance on OCI. You want to automatically install a web server,...
  41. 41.You have just launched an Oracle Linux instance in Oracle Cloud Infrastructure (OCI). You want to install...
  42. 42.An engineering team is launching a set of compute instances in Oracle Cloud Infrastructure. They must run a...
  43. 43.Your e-commerce platform experiences unpredictable daily traffic spikes, with some days seeing very high...
  44. 44.Your team manages a data transformation pipeline in Oracle Cloud Infrastructure that processes large datasets...
  45. 45.You are managing a high-performance computing (HPC) environment on Oracle Cloud Infrastructure (OCI) that...
  46. 46.Your company runs a CPU-intensive batch job in OCI that processes large data sets for approximately six hours...
  47. 47.You manage an e-commerce application running on Oracle Cloud Infrastructure (OCI) that experiences varying...
  48. 48.You support a multi-tier application running on Oracle Cloud Infrastructure (OCI) that experiences...
  49. 49.Your development team has noticed that the daily cost of running test and development environments in Oracle...
  50. 50.Your company� development team runs 50 always-on Compute instances in Oracle Cloud Infrastructure (OCI)....
  51. 51.Your organization runs an HPC environment in Oracle Cloud Infrastructure (OCI) for a monthly simulation...
  52. 52.You manage a dynamic e-commerce application on Oracle Cloud Infrastructure (OCI). The application usage...
  53. 53.You manage a multi-compartment e-commerce environment in Oracle Cloud Infrastructure (OCI) that experiences...
  54. 54.Your organization has an analytics platform running on Oracle Cloud Infrastructure (OCI) with a significant...
  55. 55.You manage a multi-tier e-commerce application on Oracle Cloud Infrastructure (OCI) using a group of flexible...
  56. 56.You are responsible for managing a high-traffic customer portal running on two Oracle Cloud Infrastructure...
  57. 57.Your e-commerce application runs on a set of OCI Compute instances deployed behind an OCI Load Balancer....
  58. 58.You are the Cloud Ops Professional for a mission-critical analytics application running on an Autonomous...
  59. 59.Your team manages a high-traffic analytics application running on Oracle Cloud Infrastructure. You�ve noticed...
  60. 60.Your organization runs a high-traffic e-commerce application on Oracle Cloud Infrastructure using a 3-tier...
  61. 61.Your organization uses separate compartments in Oracle Cloud Infrastructure (OCI) for multiple projects. The...
  62. 62.You are an OCI Cloud Ops Professional at a software development firm. The finance team requires that no new...
  63. 63.Your company has noticed rapidly increasing costs in the Production compartment over the last billing cycle....
  64. 64.Your company� R&D department deploys new resources in a dedicated Development compartment on Oracle Cloud...
  65. 65.Your company� Dev compartment frequently exceeds its cost targets due to excessive resource provisioning....
  66. 66.You are managing multiple departments within a single Oracle Cloud Infrastructure tenancy. The finance team...
  67. 67.Your organization runs a mission-critical e-commerce platform on Oracle Cloud Infrastructure 2025. The...
  68. 68.Your organization runs a mission-critical ecommerce application on Oracle Cloud Infrastructure (OCI),...
  69. 69.Your organization runs a mission-critical transactional application in Oracle Cloud Infrastructure (OCI)...
  70. 70.You are an OCI Cloud Ops Professional responsible for implementing business continuity for a mission-critical...
  71. 71.You manage a mission-critical e-commerce platform hosted in a single region on Oracle Cloud Infrastructure...
  72. 72.You manage a mission-critical application running on an Autonomous Transaction Processing database in Oracle...
  73. 73.You manage an e-commerce application running on a single Compute instance in Oracle Cloud Infrastructure...
  74. 74.You manage a microservices-based e-commerce application on Oracle Cloud Infrastructure. The front-end service...
  75. 75.Your online media streaming application experiences unpredictable spikes in user traffic. The application is...
  76. 76.You run a high-traffic e-commerce application on Oracle Cloud Infrastructure, where an Instance Pool sits...
  77. 77.You are managing an e-commerce platform on Oracle Cloud Infrastructure that experiences large traffic spikes...
  78. 78.Your team maintains a microservices application on Oracle Cloud Infrastructure (OCI) that experiences...
  79. 79.You manage a mission-critical multi-tier application on Oracle Cloud Infrastructure (OCI) that runs on a...
  80. 80.Your company runs a mission-critical application on an Oracle Database System in the primary region, with a...
  81. 81.You are managing a production Oracle Database on OCI with a Data Guard standby deployed in a different region...
  82. 82.Your company hosts a publicly accessible web application in the Phoenix region with a standby instance in the...
  83. 83.Your organization runs a mission-critical Oracle Database in the Ashburn region on OCI, with a Data Guard...
  84. 84.You operate a critical e-commerce application hosted in Oracle Cloud Infrastructure (OCI) with your primary...
  85. 85.An online retailer must retain web server logs for 2 years to satisfy regulatory requirements. They currently...
  86. 86.You are tasked with implementing a data retention strategy in Oracle Cloud Infrastructure (OCI) for a large...
  87. 87.You are a Cloud Ops professional at a compliance-driven financial institution. The institution mandates that...
  88. 88.Your organization must retain critical application logs for 7 years to meet compliance requirements. These...
  89. 89.Your team stores application logs in an Oracle Cloud Infrastructure (OCI) Object Storage bucket. Due to new...
  90. 90.Your organization is required by compliance regulations to retain application logs for seven years, ensuring...
  91. 91.You are part of a team managing Oracle Cloud Infrastructure (OCI). You need to ensure that members of the...
  92. 92.Your organization plans to grant new employees from an external SAML-based Identity Provider (IdP) access to...
  93. 93.Your organization recently created a dedicated 'DevSecOps' compartment to store security-related logs...
  94. 94.You have a new analytics team that needs to programmatically read and write objects to a production Object...
  95. 95.Your organization runs an e-commerce application on Oracle Cloud Infrastructure (OCI). The application is...
  96. 96.You have contracted an external partner to manage compute instances in a dedicated compartment within your...
  97. 97.You are responsible for implementing a consistent security posture in an OCI tenancy for a large enterprise....
  98. 98.You are tasked with improving your tenancy� security posture by ensuring that all newly created block volumes...
  99. 99.Your organization� security teams have recently updated their policies to strengthen your tenancy� security...
  100. 100.While reviewing your Oracle Cloud Infrastructure (OCI) tenancy's security posture, you discover that multiple...
  101. 101.You are responsible for implementing a secure tenancy posture in Oracle Cloud Infrastructure for your...
  102. 102.Your organization has discovered that several developers can create resources in the root compartment,...
  103. 103.Your operations team needs to ensure that MySQL database credentials stored as secrets in Oracle Cloud...
  104. 104.You are responsible for maintaining a production database in Oracle Cloud Infrastructure (OCI), and the...
  105. 105.You manage a microservices application on Oracle Kubernetes Engine (OKE) that needs secure payment service...
  106. 106.Your organization stores sensitive data in an OCI Object Storage bucket protected by a master encryption key...
  107. 107.Your company has an application running on an OCI Compute instance that needs to securely store and...
  108. 108.Your team manages a critical application that stores its database credentials as a secret in Oracle Cloud...
  109. 109.Your HPCOperators group needs to create and manage HPC compute instances only in the dev-hpc compartment. The...
  110. 110.Your organization maintains two separate compartments in OCI named 'analyticscompartment' and...
  111. 111.Your organization has created a dedicated compartment named 'Dev' for new application testing, and the DevOps...
  112. 112.Your organization has a new compartment named 'ProjectAlpha' in Oracle Cloud Infrastructure (OCI). The...
  113. 113.You have a DevOps group that needs the ability to create, update, and delete Compute instances only within...
  114. 114.Your organization recently completed a compliance audit that revealed several user groups in the 'Production'...
  115. 115.An online retailer runs a microservices e-commerce platform on Oracle Cloud Infrastructure Container Engine...
  116. 116.You are responsible for an internal business application running on Oracle Container Engine for Kubernetes...
  117. 117.You have an application running on Oracle Container Engine for Kubernetes (OKE). Each microservice writes...
  118. 118.You are running a microservices-based application in Oracle Cloud Infrastructure (OCI) and need to be alerted...
  119. 119.An operations team manages a microservices-based application deployed on Oracle Container Engine for...
  120. 120.You run a microservices application on Oracle Container Engine for Kubernetes (OKE) in OCI. Your operations...
  121. 121.Your DevOps team is investigating CPU usage spikes across all compute instances in the 'Production'...
  122. 122.Your team wants to monitor CPU utilization on all Compute instances in a specific compartment. You are tasked...
  123. 123.You have a group of Oracle Cloud Infrastructure compute instances that are all tagged with key "environment"...
  124. 124.You are investigating inconsistent memory consumption patterns on a fleet of OCI compute instances deployed...
  125. 125.You are tasked with monitoring the average CPU usage of each compute instance over the past hour to spot any...
  126. 126.You want to create an alarm that triggers if the average CPU utilization over the past hour for all Compute...
  127. 127.You have created an alarm in Oracle Cloud Infrastructure (OCI) 2025 to monitor your mission-critical compute...
  128. 128.Your team runs multiple Compute instances in Oracle Cloud Infrastructure (OCI) to host a critical...
  129. 129.You are setting up an alarm to monitor an Oracle Cloud Infrastructure (OCI) Compute instance's CPU...
  130. 130.You have created a custom alarm in Oracle Cloud Infrastructure (OCI) to alert your team when CPU usage for a...
  131. 131.Your team needs to monitor free disk space for a set of Compute instances. You have created a custom metric...
  132. 132.You have created an alarm in Oracle Cloud Infrastructure (OCI) to monitor multiple Compute instances. The...
  133. 133.You manage an e-commerce application behind an Oracle Cloud Infrastructure (OCI) Load Balancer. The...
  134. 134.You manage an e-commerce application running behind an OCI Load Balancer using a TCP-based health check for...
  135. 135.Your organization is hosting a web application behind an Oracle Cloud Infrastructure (OCI) Load Balancer....
  136. 136.Your organization has deployed a custom web application on an Oracle Cloud Infrastructure (OCI) Compute...
  137. 137.You have configured an HTTP health check on the path /health for a backend server in your Oracle Cloud...
  138. 138.You have deployed a microservice behind an OCI Load Balancer that exposes both a liveness endpoint (e.g.,...

1Z0-1067-25 exam dumps FAQ

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

No. These are original practice questions written to the Oracle Cloud Infrastructure 2025 Cloud Ops 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-1067-25 practice questions are there?

138 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-1067-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-1067-25 practice test?

Sign in and start the Oracle Cloud Infrastructure 2025 Cloud Ops 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-1067-25 exam cover?

The official exam domains are: Managing and Monitoring OCI Resources; Cost Management and Optimization; Operations and Automation; Governance and Compliance.