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

Thembelani 5/30/2023 2:47:00 AM

excellent material
Anonymous


vinesh phale 9/11/2023 2:51:00 AM

very helpfull
UNITED STATES


Bhagiii 11/4/2023 7:04:00 AM

well explained.
Anonymous


Rahul 8/8/2023 9:40:00 PM

i need the pdf, please.
CANADA


CW 7/11/2023 2:51:00 PM

a good source for exam preparation
UNITED STATES


Anchal 10/23/2023 4:01:00 PM

nice questions
INDIA


J Nunes 9/29/2023 8:19:00 AM

i need ielts general training audio guide questions
BRAZIL


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

please make this content available
UNITED STATES


Swathi 6/4/2023 2:18:00 PM

content is good
Anonymous


Leo 7/29/2023 8:45:00 AM

latest dumps please
INDIA


Laolu 2/15/2023 11:04:00 PM

aside from pdf the test engine software is helpful. the interface is user-friendly and intuitive, making it easy to navigate and find the questions.
UNITED STATES


Zaynik 9/17/2023 5:36:00 AM

questions and options are correct, but the answers are wrong sometimes. so please check twice or refer some other platform for the right answer
Anonymous


Massam 6/11/2022 5:55:00 PM

90% of questions was there but i failed the exam, i marked the answers as per the guide but looks like they are not accurate , if not i would have passed the exam given that i saw about 45 of 50 questions from dump
Anonymous


Anonymous 12/27/2023 12:47:00 AM

answer to this question "what administrative safeguards should be implemented to protect the collected data while in use by manasa and her product management team? " it should be (c) for the following reasons: this administrative safeguard involves controlling access to collected data by ensuring that only individuals who need the data for their job responsibilities have access to it. this helps minimize the risk of unauthorized access and potential misuse of sensitive information. while other options such as (a) documenting data flows and (b) conducting a privacy impact assessment (pia) are important steps in data protection, implementing a "need to know" access policy directly addresses the issue of protecting data while in use by limiting access to those who require it for legitimate purposes. (d) is not directly related to safeguarding data during use; it focuses on data transfers and location.
INDIA


Japles 5/23/2023 9:46:00 PM

password lockout being the correct answer for question 37 does not make sense. it should be geofencing.
Anonymous


Faritha 8/10/2023 6:00:00 PM

for question 4, the righr answer is :recover automatically from failures
UNITED STATES


Anonymous 9/14/2023 4:27:00 AM

question number 4s answer is 3, option c. i
UNITED STATES


p das 12/7/2023 11:41:00 PM

very good questions
UNITED STATES


Anna 1/5/2024 1:12:00 AM

i am confused about the answers to the questions. are the answers correct?
KOREA REPUBLIC OF


Bhavya 9/13/2023 10:15:00 AM

very usefull
Anonymous


Rahul Kumar 8/31/2023 12:30:00 PM

need certification.
CANADA


Diran Ole 9/17/2023 5:15:00 PM

great exam prep
CANADA


Venkata Subbarao Bandaru 6/24/2023 8:45:00 AM

i require dump
Anonymous


D 7/15/2023 1:38:00 AM

good morning, could you please upload this exam again,
Anonymous


Ann 9/15/2023 5:39:00 PM

hi can you please upload the dumps for sap contingent module. thanks
AUSTRALIA


Sridhar 1/16/2024 9:19:00 PM

good questions
Anonymous


Summer 10/4/2023 9:57:00 PM

looking forward to the real exam
Anonymous


vv 12/2/2023 2:45:00 PM

good ones for exam preparation
UNITED STATES


Danny Zas 9/15/2023 4:45:00 AM

this is a good experience
UNITED STATES


SM 1211 10/12/2023 10:06:00 PM

hi everyone
UNITED STATES


A 10/2/2023 6:08:00 PM

waiting for the dump. please upload.
UNITED STATES


Anonymous 7/16/2023 11:05:00 AM

upload cks exam questions
Anonymous


Johan 12/13/2023 8:16:00 AM

awesome training material
NETHERLANDS


PC 7/28/2023 3:49:00 PM

where is dump
Anonymous