0% found this document useful (0 votes)
133 views6 pages

Vendor: Oracle: Associate

The document contains details about the Oracle Cloud Infrastructure Developer 2020 Associate exam, including sample questions and answers. The exam contains multiple choice questions to test knowledge of secure access to OCI services using IAM, connecting applications to ATP databases from Kubernetes, load balancer configuration, API Gateway policies, serverless computing characteristics, OCI CLI authentication, API request signing requirements, microservices characteristics, and minimum persistent volume storage in OKE.

Uploaded by

RonaldMartinez
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
133 views6 pages

Vendor: Oracle: Associate

The document contains details about the Oracle Cloud Infrastructure Developer 2020 Associate exam, including sample questions and answers. The exam contains multiple choice questions to test knowledge of secure access to OCI services using IAM, connecting applications to ATP databases from Kubernetes, load balancer configuration, API Gateway policies, serverless computing characteristics, OCI CLI authentication, API request signing requirements, microservices characteristics, and minimum persistent volume storage in OKE.

Uploaded by

RonaldMartinez
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

Vendor: Oracle

Exam Code: 1Z0-1084-20

Exam Name: Oracle Cloud Infrastructure Developer 2020


Associate

Version: DEMO
★ Instant Download ★ PDF And VCE ★ 100% Passing Guarantee ★ 100% Money Back Guarantee

QUESTION 1
A programmer Is developing a Node is application which will run in a Linux server on their on-
premises data center. This application will access various Oracle Cloud Infrastructure (OC1)
services using OCI SDKs.
What is the secure way to access OCI services with OCI Identity and Access Management
(JAM)?

A. Create a new OCI IAM user associated with a dynamic group and a policy that grants the desired
permissions to OCI services. Add the on-premises Linux server in the dynamic group.
B. Create an OCI IAM policy with the appropriate permissions to access the required OCI services
and assign the policy to the on-premises Linux server.
C. Create a new OCI IAM user, add the user to a group associated with a policy that grants the
desired permissions to OCI services. In the on-premises Linux server, generate the keypair used
for signing API requests and upload the public key to the IAM user.
D. Create a new OCI IAM user, add the user to a group associated with a policy that grants the
desired permissions to OCI services. In the on-premises Linux server, add the user name and
password to a file used by Node.js authentication.

Answer: C
Explanation:
Before using Oracle Functions, you have to set up an Oracle Cloud Infrastructure API signing
key.
The instructions in this topic assume:
- you are using Linux
- you are following Oracle's recommendation to provide a passphrase to encrypt the private key
For more Detials
Set up an Oracle Cloud Infrastructure API Signing Key for Use with Oracle Functions
https://docs.cloud.oracle.com/en-us/iaas/Content/Functions/Tasks/functionssetupapikey.htm

QUESTION 2
You have a containerized app that requires an Autonomous Transaction Processing (ATP)
Database. Which option is not valid for o from a container in Kubernetes?

A. Enable Oracle REST Data Services for the required schemas and connect via HTTPS.
B. Create a Kubernetes secret with contents from the instance Wallet files. Use this secret to create
a volume mounted to the appropriate path in the application deployment manifest.
C. Use Kubernetes secrets to configure environment variables on the container with ATP instance
OCID, and OCI API credentials. Then use the CreateConnection API endpoint from the service
runtime.
D. Install the Oracle Cloud Infrastructure Service Broker on the Kubernetes cluster and deploy
serviceinstance and serviceBinding resources for ATP. Then use the specified binding name as a
volume in the application deployment manifest.

Answer: A
Explanation:
https://blogs.oracle.com/developers/creating-an-atp-instance-with-the-oci-service-broker
https://blogs.oracle.com/cloud-infrastructure/integrating-oci-service-broker-with-autonomous-
transaction-processing-in-the-real-world

QUESTION 3
Given a service deployed on Oracle Cloud infrastructure Container Engine for Kubernetes (OKE),
which annotation should you add in the sample manifest file to specify a 400 Mbps load
balancer?

Get Latest & Actual 1Z0-1084-20 Exam's Question and Answers from Lead2pass. 2
http://www.lead2pass.com
★ Instant Download ★ PDF And VCE ★ 100% Passing Guarantee ★ 100% Money Back Guarantee

A. service.beta, kubernetes. lo/oci-load-balancer-kind: 400Mbps


B. service, beta, kubernetes. lo/oci-load-balancer-value: 4 00Mbps
C. service . beta. kubernetes . lo/oci-load-balancer-shape: 400Mbps
D. service . beta . kubernetes . lo/oci-load-balancer-size: 400Mbps

Answer: C
Explanation:
The shape of an Oracle Cloud Infrastructure load balancer specifies its maximum total bandwidth
(that is, ingress plus egress). By default, load balancers are created with a shape of 100Mbps.
Other shapes are available, including 400Mbps and 8000Mbps.
To specify an alternative shape for a load balancer, add the following annotation in the metadata
section of the manifest file:
service.beta.kubernetes.io/oci-load-balancer-shape: <value> where value is the bandwidth of the
shape (for example, 100Mbps, 400Mbps, 8000Mbps).
For example:
apiVersion: v1
kind: Service
metadata:
name: my-nginx-svc
labels:
app: nginx
annotations:
service.beta.kubernetes.io/oci-load-balancer-shape: 400Mbps spec:
type: LoadBalancer
ports:
- port: 80
selector:
app: nginx

QUESTION 4
You are deploying an API via Oracle Cloud Infrastructure (OCI) API Gateway and you want to
implement request policies to control access Which is NOT available in OCI API Gateway?

Get Latest & Actual 1Z0-1084-20 Exam's Question and Answers from Lead2pass. 3
http://www.lead2pass.com
★ Instant Download ★ PDF And VCE ★ 100% Passing Guarantee ★ 100% Money Back Guarantee

A. Limiting the number of requests sent to backend services


B. Enabling CORS (Cross-Origin Resource Sharing) support
C. Providing authentication and authorization
D. Controlling access to OCI resources

Answer: D
Explanation:
In the API Gateway service, there are two types of policy:
- a request policy describes actions to be performed on an incoming request from a caller before
it is sent to a back end
- a response policy describes actions to be performed on a response returned from a back end
before it is sent to a caller
You can use request policies to:
- limit the number of requests sent to back-end services
- enable CORS (Cross-Origin Resource Sharing) support
- provide authentication and authorization

QUESTION 5
Which two statements are true for serverless computing and serverless architectures?

A. Long running tasks are perfectly suited for serverless


B. Serverless function state should never be stored externally
C. Application DevOps team is responsible for scaling
D. Serverless function execution is fully managed by a third party
E. Applications running on a FaaS (Functions as a Service) platform

Answer: AC

QUESTION 6
Your organization uses a federated identity provider to login to your Oracle Cloud Infrastructure
(OCI) environment. As a developer, you are writing a script to automate some operation and want
to use OCI CLI to do that. Your security team doesn't allow storing private keys on local
machines.
How can you authenticate with OCI CLI?

A. Run oci setup keys and provide your credentials


B. Run oci session refresh --profile <profile_name>
C. Run oci session authenticate and provide your credentials
D. Run oci setup oci-cli-rc --file path/to/target/file

Answer: C
Explanation:
Token-based authentication for the CLI allows customers to authenticate their session
interactively, then use the CLI for a single session without an API signing key. This enables
customers using an identity provider that is not SCIM-supported to use a federated user account
with the CLI and SDKs.
Starting a Token-based CLI Session
To use token-based authentication for the CLI on a computer with a web browser:
In the CLI, run the following command. This will launch a web browser.
oci session authenticate
In the browser, enter your user credentials. This authentication information is saved to the .config
file.

Get Latest & Actual 1Z0-1084-20 Exam's Question and Answers from Lead2pass. 4
http://www.lead2pass.com
★ Instant Download ★ PDF And VCE ★ 100% Passing Guarantee ★ 100% Money Back Guarantee

QUESTION 7
Which header is NOT required when signing GET requests to Oracle Cloud Infrastructure APIs?

A. date or x-date
B. (request-target)
C. content-type
D. host

Answer: C
Explanation:
For GET and DELETE requests (when there's no content in the request body), the signing string
must include at least these headers:
(request-target) (as described in draft-cavage-http-signatures-08) host
date or x-date (if both are included, Oracle uses x-date) https://docs.cloud.oracle.com/en-
us/iaas/Content/API/Concepts/signingrequests.htm

QUESTION 8
Which two are characteristics of microservices?

A. Microservices are hard to test in isolation.


B. Microservices can be independently deployed.
C. All microservices share a data store.
D. Microservices can be implemented in limited number of programming languages.
E. Microservices communicate over lightweight APIs.

Answer: BE
Explanation:
https://www.techjini.com/blog/microservices/

QUESTION 9
What is the minimum of storage that a persistent volume claim can obtain in Oracle Cloud
Infrastructure Container Engine for Kubernetes (OKE)?

A. 50 GB
B. 10 GB
C. 1 GB
D. 1 TB

Answer: A
Explanation:
The minimum amount of persistent storage that a PVC can request is 50 gigabytes. If the request
is for less than 50 gigabytes, the request is rounded up to 50 gigabytes.
https://docs.cloud.oracle.com/en-
us/iaas/Content/ContEng/Tasks/contengcreatingpersistentvolumeclaim.htm

Get Latest & Actual 1Z0-1084-20 Exam's Question and Answers from Lead2pass. 5
http://www.lead2pass.com
★ Instant Download ★ PDF And VCE ★ 100% Passing Guarantee ★ 100% Money Back Guarantee

Thank You for Trying Our Product

Lead2pass Certification Exam Features:

★ More than 99,900 Satisfied Customers Worldwide.

★ Average 99.9% Success Rate.

★ Free Update to match latest and real exam scenarios.

★ Instant Download Access! No Setup required.

★ Questions & Answers are downloadable in PDF format and


VCE test engine format.

★ Multi-Platform capabilities - Windows, Laptop, Mac, Android, iPhone, iPod, iPad.

★ 100% Guaranteed Success or 100% Money Back Guarantee.

★ Fast, helpful support 24x7.

View list of all certification exams: http://www.lead2pass.com/all-products.html

10% Discount Coupon Code: ASTR14

Get Latest & Actual 1Z0-1084-20 Exam's Question and Answers from Lead2pass. 6
http://www.lead2pass.com

You might also like