2025年最新のOracle 1z0-1067-24リアル試験問題集PDF [Q36-Q57]

Share

2025年最新ののOracle 1z0-1067-24リアル試験問題集PDF

1z0-1067-24試験問題集、1z0-1067-24練習テスト問題

質問 # 36
Several development teams in your company have each been provided with a budget and a dedicated compartment to be used for testing purpose u are asked to help them to control the costs and avoid any overspending. What should you do?

  • A. Configure a Quota for each compartment to prevent provisioning of any bare metal in-stances.
  • B. Associate a Budget Tag to each compartment with the monthly budget amount and set an alert rule to notify the developers' teams when they reached a specific percentage of the budget.
  • C. Associate a Budget Tag to each resource with monthly budget amount and use that In-formation to prepare a weekly report to send to each team.
  • D. Contact Oracle support and ask them to associate the monthly budget with the Service Limits In every region for which your tenancy is subscribed. The tenancy administrator will receive an alert email from Oracle when the limit Is reached.

正解:B


質問 # 37
You created an Oracle Linux compute instance through the Oracle Cloud Infrastructure (OCI) management console then immediately realize you forgot to add an SSH key file. You notice that OCI compute service provides instance console connections that supports adding SSH keys for a running instance. Hence, you created the console connection for your Linux server and activated it using the connection string provided. However, now you get prompted for a username and password to login. What option should you recommend to add the SSH key to your running instance, while minimizing the administrative overhead? (Choose the best answer.)

  • A. You need to modify the serial console connection string to include the identity file flag, to specify the SSH key to use.
  • B. You need to configure the boot loader to use ttyS0 as a console terminal on the VM.
  • C. You need to terminate the running instance and recreate it by providing the SSH key file.
  • D. You need to reboot the instance from the console, boot into the bash shell in maintenance mode, and add SSH keys for the OPC user.

正解:D


質問 # 38
You have set an alarm to be generated when the CPU usage of a specified instance is greater than 10%. In the alarm behavior view below you notice that the critical condition happened around 23:30. You were expecting a notification after 1 minute, however, the alarm firing state did not begin until 23:33.

What should you change to fix it? (Choose the best answer.)

  • A. Change the alarm metric interval to 1.
  • B. Change the alarm trigger delay minutes value to 1.
  • C. Change the alarm condition to be grater than 3%.
  • D. Change the notification topic that you previously associated with the alarm.

正解:B


質問 # 39
Your deployment platform within Oracle Cloud Infrastructure (OCI) leverages a compute instance with multiple block volumes attached. There are multiple teams that use the same compute instance and have access to these block volumes. You want to ensure that no one accidentally deletes any of these block volumes. You have started to construct the following IAM policy but need to determine which permissions should be used. allow group DeploymentUsers to manage volume-family where ANY { request.permission !=
<???>, request.permission != <???>, request.permission != <???> } Which permissions can you use in place of <???> in this policy? (Choose the best answer.)

  • A. ERASE_VOLUME, ERASE_VOLUME_ATTACHMENT, ERASE_VOLUME_BACKUP
  • B. VOLUME_DELETE, VOLUME_ATTACHMENT_DELETE, VOL-UME_BACKUP_DELETE
  • C. DELETE_VOLUME, DELETE_VOLUME_ATTACHMENT, DE-LETE_VOLUME_BACKUP
  • D. VOLUME_ERASE, VOLUME_ATTACHMENT_ERASE, VOL-UME_BACKUP_ERASE

正解:B


質問 # 40
Scenario: 3 (Use the OCI CLI to Work with Object Storage from a Compute Instance) Scenario Description: (Hands-On Performance Exam Certification) Your company runs a web application in OCI that generates log files. You want to upload these files to OCI Object Storage to meet data retention requirements. Some files need to be retained indefinitely, whereas others can be deleted after 30 days. Use the OCI CLI to create bucket and upload the log directory and create a lifecycle policy rule to delete temporary files after 30 days.
Pre-Configuration:
To fulfill this requirement, you are provided with the following:
Access to an OCI tenancy, an assigned compartment, and OCI credentials
A compute instance with OCI CLI installed and a set of files in ~/dir_to_upload to use Access to the OCI Console Required IAM policies Assumptions:
Perform the tasks by using the OCI CLI on the compute instance.
Use instance principal authentication for all CLI commands; the instance has been given the policies necessary.
Connect to the compute instance using Cloud Shell's private networking and the provided SSH key.
An SSH key pair has been provided to you for the compute instance.
Private Key https://objectstorage.us-ashburn-1.oraclecloud.com/n/tenancyname/b/PBT_Storage/o/PKey.key Note: Throughout your exam, ensure to use assigned Compartment , User Name and Region.
Complete the following tasks in the provisioned OCI environment:
Task 1: Create a Bucket in Object Storage
Task 2: Upload a Directory's Contents to Object Storage
Task 3: Add a Lifecycle Policy to the Bucket

正解:

解説:
See the solution below with Step by Step Explanation.
Explanation:
Task 1: Create a Bucket in Object Storage
Create a bucket named CloudOpsBucket_<user id> with the following properties:
Storage tier: Standard
Auto-tiering: Disabled
Object versioning: Enabled
Emit events: Disabled
Keys: Oracle-managed
Visibility: Private
Task 2: Upload a Directory's Contents to Object Storage
Upload the contents of the directory ~/dir_to_upload and its subdirectories to the bucket CloudOpsBucket Task 3: Add a Lifecycle Policy to the Bucket Create a lifecycle policy rule that deletes all files from ~/dir_to_upload/temp after 30 days Task 1: Create a bucket in Object Storage
1. Open Cloud Shell in the console. Under Network along the top, select Ephemeral Private Network Setup.
2. Select the subnet of the compute instance.
3. SSH into the compute instance using the provided SSH key:
ssh -i /path/to/key opc@<private_ip>
4. In the compute instance, create the bucket with the following command (note that it's one long line):
oci os bucket create -c "<compartment_id>" --name "CloudOpsBucket" --auth instance_principal --versioning
'Enabled'
Task 2: Upload a directory's contents to Object Storage
1. Upload the contents of the specified directory and subdirectories with the following command (note that it' s one long line):
oci os object bulk-upload -bn "CloudOpsBucket" --src-dir "~/dir_to_upload" --auth instance_principal Task 3: Add a lifecycle policy to the bucket
1. Create a file named rule.json
2. Add the following content to rule.json:
{"items": [{"action": "DELETE","is-enabled": true,"name": "Delete-Rule","object-name-filter": {"exclusion- patterns": null,"inclusion-patterns": null,"inclusion-prefixes": ["temp/"]},"target": "objects","time-amount":
30,"time-unit": "DAYS"}]}
3. Add the lifecycle policy rule with the following command:
oci os object-lifecycle-policy put -bn "CloudOpsBucket" --from-json file://rule.json --auth instance_principal Top of Form


質問 # 41
A company is developing a highly available web application, which will be hosted on Oracle Cloud Infrastructure (OCI). For high reliability, the Load Balancer's health status is very important. Which of the following may lead to an unhealthy Load Balancer?

  • A. VCN Network Security Groups (NSG) or Security Lists lock traffic.
  • B. Misconfigured security rule.
  • C. Storage size assigned to one of the Block Storage services.
  • D. Issue with 55 connections trying to access an instance

正解:B


質問 # 42
You are asked to deploy a new application that has been designed to scale horizontally. The business stakeholders have asked that the application be deployed in us-phoenix-1. Nor-mal usage requires 2 OCPUs. You expect to have few spikes during the week, that will require up to 4 OCPUs, and a major usage uptick at the end of each month that will require 8 OCPUs. What is the most cost-effective approach to implement a highly available and scalable solution? (Choose the best answer.)

  • A. Create an instance with 1 OCPU shape. Use the Resize Instance action to scale up to a larger shape when more resources are needed.
  • B. Create an instance pool with a VM.Standard2.1 shape instance configuration. Set up the autoscaling configuration to use 2 availability domains and have a minimum of 2 in-stances and a maximum of 8 instances.
  • C. Create an instance pool with a VM.Standard2.2 shape instance configuration. Set up the autoscaling configuration to use 2 availability domains and have a minimum of 2 in-stances, to handle the weekly spikes, and a maximum of 4 instances.
  • D. Create an instance with 1 OCPU shape. Use a CLI script to clone it when more re-sources are needed.

正解:B


質問 # 43
You have a group pf developers who launch multiple VM.Standard2.2 compute instances every day into the compartment Dev. As a result, your OCI tenancy quickly hit the service limit for this shape. Othergroups can no longer create new instances using VM.Standard2.2 shape. Because of this, your company has issued a new mandate that the Dev compartment must include a quota to allow for use of only 20 VM.Standard2.2 shapes per Availability Do-main. Your solution should not affect any other compartment in the tenancy. Which quota statement should be used to implement this new requirement? (Choose the best answer.)

  • A. zero compute quotas in tenancy set compute quota vm#€"standard22--count to 20 in compartment dev
  • B. set compute quota vm-standard22--count to 20 in compartment dev
  • C. set compute quota vm-standard2-count to 10 in compartment dev where request.region = us-phoenix-01
  • D. zero compute quotas in tenancy set compute quota vm#€"standard22--count to 20 in tenancy dev

正解:B


質問 # 44
You created an Oracle Linux compute instance through the Oracle Cloud Infrastructure (OCI) management console then immediately realize you forgot to add an SSH key file. You notice that OCI compute service provides instance console connections that supports adding SSH keys for a running instance. Hence, you created the console connection for your Linux server and activated it using the connection string provided.
However, now you get prompted for a username and password to login. What option should you recommend to add the SSH key to your running instance, while minimizing the administrative overhead? (Choose the best answer.)

  • A. You need to modify the serial console connection string to include the identity file flag, to specify the SSH key to use.
  • B. You need to configure the boot loader to use ttyS0 as a console terminal on the VM.
  • C. You need to terminate the running instance and recreate it by providing the SSH key file.
  • D. You need to reboot the instance from the console, boot into the bash shell in maintenance mode, and add SSH keys for the OPC user.

正解:D


質問 # 45
Your company has restructured its HR department. As part of this change, you also need to re-organize the compartments within Oracle Cloud Infrastructure (OCI) to align them with the company's new organizational structure. The following change is required:

Compartment Team_x needs to be moved under a new parent compartment, Project_B The tenancy has the following policies defined for compartments Project_A and Project_B:
Policy1: Allow group G1 to manage instance-family in compartment HR:Project_A Policy2: Allow group G2 to manage instance-family in compartment HR:Project_B Which two statements describe the impacts after the compartment Team_x is moved? (Choose two.)

  • A. Group G2 can now manage instance-families in compartment Project_B, compartment Project_A and compartment Team_X
  • B. Group G1 can now manage instance-families in compartment Project_A, compartment Project_B and compartment Team_X
  • C. Group G1 can now manage instance-families in compartment Project_A but not in compartment Team_x
  • D. Group G2 can now manage instance-families in compartment Project_B and compart-ment Team_X
  • E. Group G2 can now manage instance-families in compartment Project_A but not in compartment Team_x

正解:C、D


質問 # 46
You are asked to deploy a new application that has been designed to scale horizontally. The business stakeholders have asked that the application be deployed in us-phoenix-1. Nor-mal usage requires 2OCPUs.
You expect to have few spikes during the week, that will require up to 4 OCPUs, and a major usage uptick at the end of each month that will require 8 OCPUs. What is the most cost-effective approach to implement a highly available and scalable solution? (Choose the best answer.)

  • A. Create an instance with 1 OCPU shape. Use the Resize Instance action to scale up to a larger shape when more resources are needed.
  • B. Create an instance pool with a VM.Standard2.1 shape instance configuration. Set up the autoscaling configuration to use 2 availability domains and have a minimum of 2 in-stances and a maximum of 8 instances.
  • C. Create an instance pool with a VM.Standard2.2 shape instance configuration. Set up the autoscaling configuration to use 2 availability domains and have a minimum of 2 in-stances, to handle the weekly spikes, and a maximum of 4 instances.
  • D. Create an instance with 1 OCPU shape. Use a CLI script to clone it when more re-sources are needed.

正解:B


質問 # 47
Your company hosts a web application on OCI using compute instances and block volumes. To minimize your recovery point objective (RPO), you enable cross-region block volume replication for the block volumes.
Which option is true regarding cross-region volume replication?

  • A. The replica cannot be directly mounted on a compute instance. Instead, it must be activated, creating a clone that will be available for mounting.
  • B. Replication replaces the need for block volume backups.
  • C. Replication is synchronous, so it may slightly degrade block volume performance.
  • D. The cost of the replica matches the cost of the source volume; for example, the replica of a high- performance volume will be billed at the high-performance rate.

正解:A


質問 # 48
In your root compartment, you have two subcompartments, A and B. You have three in-stances in each compartment, including the root (for a total of nine). What does the following metric query return if you use the console to run it in the root compartment? CpuUtiliza-tion[1m].mean()

  • A. One number: the average CPU utilization over all nine instances over the last minute
  • B. One time series: the average CPU utilization over all nine instances per minute
  • C. Three different time series: each time series represents the average CPU utilization of one of the three instances in the root compartment per minute.
  • D. One time series: the average CPU utilization over the three instances in the root compartment per minute

正解:D


質問 # 49
You run a large global application with 90% of customers based in the US and Canad a. You want to be able to test a new feature and allow a small percentage of users to access the new version of your application. What Oracle Cloud Infrastructure Traffic Management steering policy should you utilize? (Choose the best answer.)

  • A. IP Prefix steering
  • B. ASN steering
  • C. Geolocation steering
  • D. Load Balancer

正解:D


質問 # 50
You are working with Terraform on your laptop and have been tasked with spinning up multiple compute instances in Oracle Cloud Infrastructure (OCI) for a project. In addition, you are also required to collect IP addresses of provisioned instances and write them to a file and save it in your laptop. Which specific Terraform functionality can help accomplish this task? (Choose the best answer.)

  • A. Terraform modules
  • B. Terraform remote state
  • C. Terraform remote-exec
  • D. Terraform local-exec

正解:D


質問 # 51
You have a Linux compute instance located in a public subnet in a VCN which hosts a web application. The security list attached to subnet containing the compute instance has the following stateful ingress rule.

The Route table attached to the Public subnet is shown below. You can establish an SSH connection into the compute instance from the internet. However, you are not able to connect to the web server using your web browser.

Which step will resolve the issue? (Choose the best answer.)

  • A. In the route table, add a rule for your default traffic to be routed to service gateway.
  • B. In the route table, add a rule for your default traffic to be routed to NAT gateway.
  • C. In the security list, add an ingress rule for port 80 (http).
  • D. In the security list, remove the ssh rule.

正解:C


質問 # 52
You have created an Autonomous Data Warehouse (ADW) service in your company Oracle Cloud Infrastructure (OCI) tenancy and you now have to load historical data into it. You have already extracted this historical data from multiple data marts and data warehouses. This data is stored in multiple CSV text files and these files are ranging in size from 25 MB to 20 GB. Which is the most efficient and error tolerant method for loading data into ADW? (Choose the best answer.)

  • A. Create Auth token, use it to create an object storage credential by executing DBMS_CLOUD.CREATE_CREDENTIAL, using OCI CLI upload the CSV files to an OCI object storage bucket, create the tables in the ADW database and then execute DBMS_CLOUD.COPY_DATA for each CSV file to copy the contents into the corresponding ADW database table.
  • B. Create Auth token, use it to create an object storage credential by executing DBMS_CLOUD.CREATE_CREDENTIAL, using the web console upload the CSV files to an OCI object storage bucket, create the tables in the ADW database and then execute DBMS_CLOUD.COPY_DATA for each CSV file to copy the contents into the corresponding ADW database table.
  • C. Create Auth token, use it to create an object storage credential by executing DBMS_CLOUD.CREATE_CREDENTIAL, using OCI CLI upload the CSV files to an OCI object storage bucket, create the tables in the ADW database and then execute Data Pump Import for each CSV file to copy the contents into the corresponding ADW database table.
  • D. Create the tables in the ADW database and then execute SQL*Loader for each CSV file to load the contents into the corresponding ADW database table.

正解:A


質問 # 53
You are asked to implement the disaster recovery (DR) and business continuity requirements for Oracle Cloud Infrastructure (OCI) Block Volumes. Two OCI regions being used: a primary/source region and a DR/destination region. The requirements are: There should be a copy of data in the destination region to use if a region-wide disaster occurs in the source region
* Minimize costs Which design will help you meet these requirements? (Choose the best answer.)

  • A. Back up block volumes. Use Object Storage lifecycle management to automatically move backup objects to Archive Storage. Copy Archive Storage buckets from source region to destination at regular intervals.
  • B. Clone block volumes. Copy block volume clones from source region to destination region at regular intervals.
  • C. Clone block volumes. Use Object Storage lifecycle management to automatically move clone objects to Archive Storage. Copy Archive Storage buckets from source region to destination at regular intervals.
  • D. Back up block volumes. Copy block volume backups from source region to destination region at regular intervals.

正解:A


質問 # 54
Recently, your e-commerce web application has been receiving significantly more traffic than usual. Users are reporting they often encounter a 503 Service Error when trying to access your site. Sometimes the site is very slow. You check your instance pool configuration to con-firm that the maximum numberof instances is configured to allow 20 compute instances. Currently, 14 compute instances have been provisioned by the instance pool. You also confirm that current CPU utilization across all hosts exceeds the scale-out threshold you set in your auto-scaling policy. However, the instance pool is not provisioning any new instances. What can you check to determine why the application is NOT functioning properly? (Choose the best answer.)

  • A. Verify that the database is accessible.
  • B. Verify that the compute resource quota has not been exceeded.
  • C. Verify that the new offer feature code did not introduce any performance bugs.
  • D. Verify that the Quality Assurance team is not currently performing load-testing against production.

正解:B


質問 # 55
You have a group of developers who launch multiple VM.Standard3.Flex compute in-stances every day into the compartment Dev. As a result, your Oracle Cloud Infrastructure (OCI) tenancy quickly hits the service limit for this shape, and other groups can no longer create new instances using the VM.Standard3.Flex shape. Therefore, your company issues a new mandate that the Dev compartment must include a quota that allows the use of only 20 VM.Standard3.Flex OCPUs per availability domain, without affecting any other compartment in the tenancy. Which quota statement would you use to implement this new requirement?

  • A. set compute-core quota standard3-core-count to 20 in compartment dev where re-quest.region = us-phoenix-1
  • B. zero compute-core quotas in tenancy set compute-core quota standard3-core-count to 20 in compartment dev
  • C. zero compute-core quotas in tenancy set compute-core quota standard3-core-count to 20 in tenancy dev
  • D. set compute-core quota standard3-core-count to 20 in compartment dev

正解:D


質問 # 56
Which two statements about the Oracle Cloud Infrastructure (OCI) Command Line Inter-face (CLI) are TRUE? (Choose two.)

  • A. You can run CLI commands from inside OCI Regions only.
  • B. The CLI allows you to use the Python language to interact with OCI APIs.
  • C. The CLI provides an automatic way to connect with instances provisioned on OCI.
  • D. You can filter CLI output using the JMESPath query option for JSON.
  • E. The CLI provides the same core functionality as the Console, plus additional commands.

正解:D、E


質問 # 57
......

PDF問題(2025年最新)実際のOracle 1z0-1067-24試験問題:https://jp.fast2test.com/1z0-1067-24-premium-file.html


弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

我々の働いている時間: ( GMT 0:00-15:00 )
月曜日から土曜日まで

サポート: 現在連絡 

English Deutsch 繁体中文 한국어