Oracle 1Z0-1109-23 Exam (page: 1)
Oracle Cloud Infrastructure 2023 DevOps Professional
Updated on: 12-Aug-2025

Viewing Page 1 of 21

A developer is using the Oracle Cloud Infrastructure (OCI) DevOps service to build an application. They are currently in the process of setting up the required infrastructure using the available tools. In which two ways can you explain the difference between Ansible and Terraform? (Choose two.)

  1. Ansible uses declarative approach: Terraform is procedural in nature.
  2. Ansible is an OCI provided service for CM; Terraform is a third-party tool for infra-structure as code.
  3. Ansible focuses on infrastructure configuration: Terraform specializes in infrastructure provisioning
  4. Ansible supports lifecycle management: Terraform lacks lifecycle management support.
  5. Ansible automates software installation and application deployment: Terraform man-ages infrastructure as code.

Answer(s): C,E

Explanation:

The two correct explanations for the difference between Ansible and Terraform are: Ansible auto- mates software installation and application deployment, while Terraform manages infrastructure as code. This highlights the primary focus of each tool. Ansible is mainly used for automating tasks related to software installation, application deployment, and configuration management. It is well- suited for managing the software stack and ensuring consistency across systems. On the other hand, Terraform specializes in infrastructure provisioning and management, allowing users to define and manage their infrastructure resources using code. Ansible focuses on infrastructure configuration, while Terraform specializes in infrastructure provisioning. This highlights the different aspects of infrastructure management that each tool addresses. Ansible is designed to handle configuration management tasks, such as setting up software, managing files, and applying configuration changes across systems. It excels at ensuring the desired state of the infrastructure. In contrast, Terraform is focused on provisioning infrastructure resources, such as virtual machines, networks, and storage. It provides a way to define and manage these resources in a declarative manner, allowing for infra- structure as code. It's worth noting that while Ansible is supported and provided by OCI as a con- figuration management tool, Terraform is a third-party tool that has gained popularity for managing infrastructure across multiple cloud providers, including OCI.



You as a DevOps Engineer are asked to manage an application to be deployed in Oracle Cloud Infrastructure Container Engine for Kubernetes (OKE). This requires pulling images from Oracle Cloud Infrastructure Registry (OCIR) during deployment.
Which three statements are true? (Choose three.)

  1. Add an imagePullSecrets section to the manifest file that specifies the name of the Docker secret you created to access OCIR
  2. Use kubectl to create a Docker registry secret.
  3. Add a containers section that specifies the name and location of the images you want to pull from OCIR. along with other deployment details.
  4. Add an Auth section to the manifest file that specifies the name of the Docker secret you create using Auth Token to access OCIR.
  5. Add an image section that specifies the name and location of the images you want to pull from OCIR along with other deployment details.

Answer(s): A,B,C

Explanation:

The three statements that are true regarding managing an application deployed in Oracle Cloud Infrastructure Container Engine for Kubernetes (OKE) and pulling images from Oracle Cloud Infra- structure Registry (OCIR) are: Use kubectl to create a Docker registry secret: To access images from OCIR, you need to create a Docker registry secret in Kubernetes. This can be done using the ku-bectl create secret docker-registry command. Add a containers section that specifies the name and location of the images you want to pull from OCIR, along with other deployment details: In your deployment manifest (e.g., YAML file), you need to define a containers section that specifies the image names and locations from OCIR. This section includes other deployment details such as re- source limits and environment variables. Add an imagePullSecrets section to the manifest file that specifies the name of the Docker secret you created to access OCIR: To authenticate and pull images from OCIR, you need to specify the name of the Docker registry secret in the imagePullSecrets section of your manifest file. This ensures that the appropriate credentials are used to authenticate with OCIR and pull the required images. These steps enable your application deployed in OKE to pull the necessary container images from OCIR during deployment, ensuring smooth and secure deployment of your application.


Reference:

https://docs.oracle.com/en- us/iaas/Content/ContEng/Tasks/contengpullingimagesfromocir.htm



You are a developer who has made a mistake when adding variables to your build_spec.yaml file. This mistake resulted in a failed build pipeline.
Which is a possible error you could have made?

  1. exported a vaultVariable by creating another variable to export, then transferred the values over during a build stage
  2. used vaultVariable to hold the content of the vault secrets in OCID format
  3. defined parameters such as $(VARIABLE_NAME) that you later assigned in the Pa-rameters tab when you ran the build pipeline
  4. assumed a non-exported variable would be persistent across multiple stages of a build pipeline.

Answer(s): D

Explanation:

The possible error you could have made when adding variables to your build_spec.yaml file that resulted in a failed build pipeline is assuming that a non-exported variable would be persistent across multiple stages of the build pipeline. In a build pipeline, variables need to be properly exported and managed to ensure their availability and persistence across different stages. If you mistakenly assumed that a non-exported variable would persist across stages, it could lead to issues where the variable is not available or its value is not maintained as expected, causing the build pipeline to fail.



Which two changes to infrastructure with the Oracle Cloud Infrastructure (OCI) Provider for Terraform will NOT result in any resources being destroyed or provisioned? (Choose two.)

  1. changing the image OCID of a compute instance
  2. changing the shape of a compute instance
  3. adding a subnet to a VCN
  4. adding a CIDR block to a VCN
  5. changing the Display Name of a compute instance

Answer(s): C,D

Explanation:

The two changes to infrastructure with the Oracle Cloud Infrastructure (OCI) Provider for Terraform that will not result in any resources being destroyed or provisioned are: Adding a CIDR block to a VCN: This change does not affect any existing resources. It simply expands the IP ad-dress range of the VCN, allowing for the creation of additional subnets within the VCN. Adding a subnet to a VCN:
Similar to adding a CIDR block, adding a subnet to a VCN does not affect any existing resources. It defines a new subnet within the VCN's IP address range, allowing for the al-location of resources to that subnet. Changing the image OCID of a compute instance, changing the shape of a compute instance, and changing the Display Name of a compute instance can potentially result in resource destruction and provisioning. These changes may require the creation of new in-stances, reconfiguration of existing instances, or termination of existing instances, depending on the specifics of the changes.



Which statement is true regarding the Oracle Cloud Infrastructure (OCI) DevOps service?

  1. Users can migrate workloads from on-premises, but not from other cloud platforms.
  2. Users can avoid downtime during deployments and automate the complexity of updating applications.
  3. Users can view limited lifecycle phases as needed to assess application performance.
  4. Users can only store code on public repositories and cannot access internal code repositories.

Answer(s): B

Explanation:

The correct statement is: Users can avoid downtime during deployments and automate the complexity of updating applications. The Oracle Cloud Infrastructure (OCI) DevOps service provides a set of tools and services that help automate and streamline the software development and deployment processes. One of the key benefits of OCI DevOps is the ability to avoid downtime during deployments by implementing strategies such as blue-green deployments or rolling deployments. By using OCI DevOps, users can automate the complexity of updating applications by defining CI/CD (Continuous Integration/Continuous Deployment) pipelines. These pipelines can include steps for building, testing, and deploying applications, allowing for efficient and reliable updates without disrupting the availability of the application. The other statements provided are not accurate: OCI DevOps allows users to migrate workloads from on-premises environments as well as from other cloud plat-forms. Users can store code in both public and private repositories, including internal code repositories. OCI DevOps provides visibility into the full lifecycle phases of applications, allowing users to assess performance and make informed decisions.


Reference:

https://docs.oracle.com/en- us/iaas/Content/devops/using/devops_overview.htm



Viewing Page 1 of 21



Share your comments for Oracle 1Z0-1109-23 exam with other users:

john 11/16/2023 5:13:00 PM

i gave the amazon dva-c02 tests today and passed. very helpful.
Anonymous


Tao 11/20/2023 8:53:00 AM

there is an incorrect word in the problem statement. for example, in question 1, there is the word "speci c". this is "specific. in the other question, there is the word "noti cation". this is "notification. these mistakes make this site difficult for me to use.
Anonymous


patricks 10/24/2023 6:02:00 AM

passed my az-120 certification exam today with 90% marks. studied using the dumps highly recommended to all.
Anonymous


Ananya 9/14/2023 5:17:00 AM

i need it, plz make it available
UNITED STATES


JM 12/19/2023 2:41:00 PM

q47: intrusion prevention system is the correct answer, not patch management. by definition, there are no patches available for a zero-day vulnerability. the way to prevent an attacker from exploiting a zero-day vulnerability is to use an ips.
UNITED STATES


Ronke 8/18/2023 10:39:00 AM

this is simple but tiugh as well
Anonymous


CesarPA 7/12/2023 10:36:00 PM

questão 4, segundo meu compilador local e o site https://www.jdoodle.com/online-java-compiler/, a resposta correta é "c" !
UNITED STATES


Jeya 9/13/2023 7:50:00 AM

its very useful
INDIA


Tracy 10/24/2023 6:28:00 AM

i mastered my skills and aced the comptia 220-1102 exam with a score of 920/1000. i give the credit to for my success.
Anonymous


James 8/17/2023 4:33:00 PM

real questions
UNITED STATES


Aderonke 10/23/2023 1:07:00 PM

very helpful assessments
UNITED KINGDOM


Simmi 8/24/2023 7:25:00 AM

hi there, i would like to get dumps for this exam
AUSTRALIA


johnson 10/24/2023 5:47:00 AM

i studied for the microsoft azure az-204 exam through it has 100% real questions available for practice along with various mock tests. i scored 900/1000.
GERMANY


Manas 9/9/2023 1:48:00 AM

please upload 1z0-1072-23 exam dups
UNITED STATES


SB 9/12/2023 5:15:00 AM

i was hoping if you could please share the pdf as i’m currently preparing to give the exam.
Anonymous


Jagjit 8/26/2023 5:01:00 PM

i am looking for oracle 1z0-116 exam
UNITED STATES


S Mallik 11/27/2023 12:32:00 AM

where we can get the answer to the questions
Anonymous


PiPi Li 12/12/2023 8:32:00 PM

nice questions
NETHERLANDS


Dan 8/10/2023 4:19:00 PM

question 129 is completely wrong.
UNITED STATES


gayathiri 7/6/2023 12:10:00 AM

i need dump
UNITED STATES


Deb 8/15/2023 8:28:00 PM

love the site.
UNITED STATES


Michelle 6/23/2023 4:08:00 AM

can you please upload it back?
Anonymous


Ajay 10/3/2023 12:17:00 PM

could you please re-upload this exam? thanks a lot!
Anonymous


him 9/30/2023 2:38:00 AM

great about shared quiz
Anonymous


San 11/14/2023 12:46:00 AM

goood helping
Anonymous


Wang 6/9/2022 10:05:00 PM

pay attention to questions. they are very tricky. i waould say about 80 to 85% of the questions are in this exam dump.
UNITED STATES


Mary 5/16/2023 4:50:00 AM

wish you would allow more free questions
Anonymous


thomas 9/12/2023 4:28:00 AM

great simulation
Anonymous


Sandhya 12/9/2023 12:57:00 AM

very g inood
Anonymous


Agathenta 12/16/2023 1:36:00 PM

q35 should be a
Anonymous


MD. SAIFUL ISLAM 6/22/2023 5:21:00 AM

sap c_ts450_2021
Anonymous


Satya 7/24/2023 3:18:00 AM

nice questions
UNITED STATES


sk 5/13/2023 2:10:00 AM

ecellent materil for unserstanding
INDIA


Gerard 6/29/2023 11:14:00 AM

good so far
Anonymous