Oracle 1Z0-1109-23 Exam (page: 1)
Oracle Cloud Infrastructure 2023 DevOps Professional
Updated on: 11-Nov-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:

Nenad 7/12/2022 11:05:00 PM

passed my first exam last week and pass the second exam this morning. thank you sir for all the help and these brian dumps.
INDIA


Lucky 10/31/2023 2:01:00 PM

does anyone who attended exam csa 8.8, can confirm these questions are really coming ? or these are just for practicing?
HONG KONG


Prateek 9/18/2023 11:13:00 AM

kindly share the dumps
UNITED STATES


Irfan 11/25/2023 1:26:00 AM

very nice content
Anonymous


php 6/16/2023 12:49:00 AM

passed today
Anonymous


Durga 6/23/2023 1:22:00 AM

hi can you please upload questions
Anonymous


JJ 5/28/2023 4:32:00 AM

please upload quetions
THAILAND


Norris 1/3/2023 8:06:00 PM

i passed my exam thanks to this braindumps questions. these questions are valid in us and i highly recommend it!
UNITED STATES


abuti 7/21/2023 6:10:00 PM

are they truely latest
Anonymous


Curtis Nakawaki 7/5/2023 8:46:00 PM

questions appear contemporary.
UNITED STATES


Vv 12/2/2023 6:31:00 AM

good to prepare in this site
UNITED STATES


praveenkumar 11/20/2023 11:57:00 AM

very helpful to crack first attempt
Anonymous


asad Raza 5/15/2023 5:38:00 AM

please upload this exam
CHINA


Reeta 7/17/2023 5:22:00 PM

please upload the c_activate22 dump questions with answer
SWEDEN


Wong 12/20/2023 11:34:00 AM

q10 - the answer should be a. if its c, the criteria will meet if either the prospect is not part of the suppression lists or if the job title contains vice president
MALAYSIA


david 12/12/2023 12:38:00 PM

this was on the exam as of 1211/2023
Anonymous


Tink 7/24/2023 9:23:00 AM

great for prep
GERMANY


Jaro 12/18/2023 3:12:00 PM

i think in question 7 the first answer should be power bi portal (not power bi)
Anonymous


9eagles 4/7/2023 10:04:00 AM

on question 10 and so far 2 wrong answers as evident in the included reference link.
Anonymous


Tai 8/28/2023 5:28:00 AM

wonderful material
SOUTH AFRICA


VoiceofMidnight 12/29/2023 4:48:00 PM

i passed!! ...but barely! got 728, but needed 720 to pass. the exam hit me with labs right out of the gate! then it went to multiple choice. protip: study the labs!
UNITED STATES


A K 8/3/2023 11:56:00 AM

correct answer for question 92 is c -aws shield
Anonymous


Nitin Mindhe 11/27/2023 6:12:00 AM

great !! it is really good
IRELAND


BailleyOne 11/22/2023 1:45:00 AM

explanations for the answers are to the point.
Anonymous


patel 10/25/2023 8:17:00 AM

how can rea next
INDIA


MortonG 10/19/2023 6:32:00 PM

question: 128 d is the wrong answer...should be c
EUROPEAN UNION


Jayant 11/2/2023 3:15:00 AM

thanks for az 700 dumps
Anonymous


Bipul Mishra 12/14/2023 7:12:00 AM

thank you for this tableau dumps . it will helpfull for tableau certification
UNITED STATES


hello 10/31/2023 12:07:00 PM

good content
Anonymous


Matheus 9/3/2023 2:14:00 PM

just testing if the comments are real
UNITED STATES


yenvti2@gmail.com 8/12/2023 7:56:00 PM

very helpful for exam preparation
Anonymous


Miguel 10/5/2023 12:16:00 PM

question 11: https://help.salesforce.com/s/articleview?id=sf.admin_lead_to_patient_setup_overview.htm&type=5
SPAIN


Noushin 11/28/2023 4:52:00 PM

i think the answer to question 42 is b not c
CANADA


susan sandivore 8/28/2023 1:00:00 AM

thanks for the dump
Anonymous