Courseiva

Oracle Cloud Infrastructure 2026 Architect Associate (1Z0-1072-26) (1Z0-1072-26) (1Z0-1072-26) — Questions 175

524 questions total · 7pages · All types, answers revealed

Page 1 of 7

Page 2
1
MCQmedium

What is the purpose of the 'Tags' feature in OCI resource management?

A.To apply cost tracking and logical grouping
B.To define IAM policies
C.To manage network traffic
D.To automate patch management
AnswerA

Tags are essential for cost analysis and resource organization.

Why this answer

Tags allow you to organize and filter resources across compartments.

2
MCQeasy

What is the maximum number of groups a single OCI user can be a member of?

A.10 groups
B.300 groups
C.Unlimited
D.50 groups
AnswerB

OCI permits a user to be a member of up to 300 groups.

Why this answer

OCI enforces limits on group membership per user. The standard limit is 300 groups per user.

3
MCQmedium

You have an OCI compute instance configured with an autoscaling policy. The autoscaling configuration scales out your instance pool by 2 instances when CPU exceeds 75%. You notice that during a traffic surge, the pool scales out, but shortly after, it scales right back in, causing flapping. How can you prevent this behavior?

A.Increase the autoscaling cooldown period.
B.Disable instance health checks entirely.
C.Decrease the instance pool maximum limit to 1.
D.Change the VCN route table timeout.
AnswerA

A longer cooldown period prevents rapid oscillation (flapping) between scale-out and scale-in events.

Why this answer

Configuring an appropriate cooldown period (step delay) ensures that autoscaling waits a specified duration after a scaling event before evaluating metrics again.

4
MCQmedium

You are troubleshooting a connection issue to an OCI Compute instance behind a public Load Balancer. The security list for the load balancer allows traffic on port 443, but clients receive a connection timeout. Upon checking the backend instances, you notice their security lists do not allow incoming traffic from the load balancer subnet. What is the best practice fix?

A.Configure a NAT Gateway on the load balancer subnet.
B.Change the load balancer shape from Flexible to 100 Mbps.
C.Attach an Internet Gateway to the backend subnet route table.
D.Add a security rule in the backend subnet to allow traffic from the Load Balancer subnet CIDR on the application port.
AnswerD

Backend instances need security rules permitting ingress traffic from the load balancer's IP range or subnet.

Why this answer

Backend instances must allow incoming traffic from the load balancer's subnet or security list on the application ports. Updating the backend instance security lists or NSGs resolves the timeout.

5
MCQhard

An administrator is managing an OCI File Storage Service file system and notices that storage consumption has grown significantly. They want to identify which directories and users are consuming the most space. How can this be accomplished?

A.View the Storage Consumption metric in OCI Monitoring service aggregated by directory path.
B.Check the Object Storage Metrics explorer for FSS bucket utilization.
C.Mount the file system on a compute instance and use standard Linux tools such as 'du' or quota management.
D.Enable FSS Analytics in the OCI Console under Storage Administration.
AnswerC

FSS exposes standard POSIX/NFS interfaces, allowing standard Linux utilities to inspect directory and file-level consumption when mounted.

Why this answer

OCI File Storage Service does not provide a native per-directory usage reporting dashboard within the console, but administrators can mount the file system and use standard Linux utilities (like du or quota tools if configured via NFS) to analyze storage consumption.

6
MCQmedium

A company is running an enterprise application on OCI that requires high IOPS and low latency for its database files. The administrator needs to attach a block volume that can dynamically scale performance beyond its default capacity limits without having to detach the volume. Which Block Volume performance level should be selected?

A.Higher Performance
B.Lower Cost
C.Ultra High Performance
D.Balanced
AnswerA

Higher Performance delivers the highest IOPS/throughput and supports demanding enterprise database workloads.

Why this answer

Higher Performance provides the highest IOPS and throughput per GB, and volumes can be dynamically scaled up to higher performance tiers or resized without downtime.

7
MCQeasy

What is the primary purpose of an OCI Virtual Cloud Network (VCN)?

A.To store backup files and unstructured object data.
B.To host public DNS domain names on the internet.
C.To provide a customizable, isolated virtual network in OCI for your cloud resources.
D.To execute serverless container functions.
AnswerC

A VCN provides network isolation and control for compute, database, and other OCI resources.

Why this answer

A VCN is a customizable, private software-defined network that you set up in OCI, resembling a traditional physical network.

8
MCQeasy

Which feature in the Monitoring service allows you to aggregate metrics from different compartments into a single dashboard?

A.Compartment Explorer
B.Metric Query Language (MQL)
C.Dynamic Groups
D.Logging Analytics
AnswerB

MQL supports cross-compartment queries using the compartment ID.

Why this answer

Cross-compartment queries are supported by the Monitoring service to view resources globally or across specific compartments.

9
Multi-Selectmedium

Which TWO best practices should be followed when designing OCI IAM policies? (Choose two.)

Select 2 answers
A.Scope policies to specific compartments rather than the tenancy root whenever feasible.
B.Hardcode API signing keys directly into public source code repositories.
C.Grant the minimum permissions necessary for users to perform their jobs (Principle of Least Privilege).
D.Always assign the 'manage all-resources' role to every user to simplify troubleshooting.
E.Use tenancy-wide administrative policies for all standard developers.
AnswersA, C

Compartment-level scoping prevents overly broad access across the entire tenancy.

Why this answer

IAM best practices include adhering to the principle of least privilege and scoping policies to compartments rather than tenancies when possible.

10
MCQmedium

You are setting up OCI Traffic Management Steering Policy with a Failover strategy. You have a primary endpoint in Ashburn and a secondary endpoint in Phoenix. If the primary endpoint fails, how does the steering policy handle incoming DNS queries?

A.It drops all DNS queries until Ashburn recovers.
B.It returns an NXDOMAIN error to the client.
C.It automatically routes all DNS queries to the secondary endpoint in Phoenix.
D.It round-robins queries between both endpoints equally.
AnswerC

Failover steering switches traffic to the secondary endpoint when the primary endpoint health check fails.

Why this answer

A Failover steering policy routes all traffic to the highest-priority healthy endpoint (Ashburn). If Ashburn fails health checks, it automatically fails over to the secondary endpoint (Phoenix).

11
MCQhard

An OCI architect is configuring a DRG to handle multiple VCN attachments. They want to ensure that VCN-1 can communicate with the on-premises network, but VCN-2 cannot. How should this be configured using DRG route tables?

A.Configure a NAT Gateway on VCN-2 to drop on-premises packets.
B.Associate VCN-1 and VCN-2 attachments with different DRG route tables, ensuring only VCN-1's route table imports routes from the on-premises attachment.
C.Place VCN-1 and VCN-2 in different OCI tenancies.
D.Attach VCN-2 to an Internet Gateway instead of the DRG.
AnswerB

Separate DRG route tables and import rules allow granular control over which attachments share routes.

Why this answer

In DRG version 2, you attach VCN-1 and VCN-2 to the DRG, and associate them with separate DRG route tables. The route table for VCN-1's attachment includes an import rule for the on-premises attachment, while VCN-2's route table does not.

12
MCQmedium

Your company uses Compute instances deployed across various departments to access OCI Object Storage buckets. Instead of storing API keys on the instances, you decide to use Instance Principals. Which of the following components is NOT required to configure Instance Principals for this workflow?

A.An individual IAM user account created for each compute instance to authenticate API calls.
B.Compute instances launched within OCI that support instance metadata services.
C.An IAM Policy that grants the Dynamic Group permission to access the Object Storage bucket.
D.A Dynamic Group that includes the target Compute instances based on matching rules.
AnswerA

Instance principals eliminate the need to configure individual IAM user credentials on instances.

Why this answer

Instance Principals use dynamic groups to match instances based on tags or compartment OCIDs, and policies to grant permissions. Individual IAM users are never required or created for instance principals.

13
Multi-Selecthard

Which THREE statements are true regarding Exadata Cloud Service architecture and capabilities? (Choose three.)

Select 3 answers
A.It combines Oracle Database software with Exadata database servers and storage servers in OCI.
B.Storage is managed using Oracle Automatic Storage Management (ASM) across high-performance smart flash and disk storage.
C.It allows you to create multiple VM clusters on a single Exadata infrastructure rack.
D.It does not support Oracle Real Application Clusters (RAC).
E.It only supports single-instance databases with no option for high availability.
AnswersA, B, C

Exadata Cloud Service runs Oracle software on dedicated Exadata database and storage server hardware.

Why this answer

Exadata Cloud Service combines Exadata hardware with Oracle Cloud automation, supporting VM clusters, Oracle RAC, and built-in storage servers.

14
MCQhard

You have an instance pool with 5 instances. You update the associated instance configuration with a new custom image containing security patches. How do you apply this new configuration to the existing instances in the pool?

A.Delete the instance pool and create a completely new pool, as instance configurations cannot be updated once linked.
B.Use the instance pool update action to trigger a rolling update or instance replacement with the new configuration.
C.Reboot each instance individually via the OS command line.
D.Attach the new custom image directly as a secondary boot volume to all running instances.
AnswerB

Instance pools support updating instances to match a new instance configuration via rolling replacement actions.

Why this answer

To update existing instances in an instance pool with a new instance configuration, you must perform a rolling update or recreate the instances in the pool using the instance pool rollout/update action.

15
MCQmedium

An administrator needs to write a policy that grants a group read-only access to all databases across the tenancy. Which resource type should be specified in the policy?

A.database-family
B.db-resources
C.sql-databases
D.databases
AnswerA

The 'database-family' resource type covers all database services in OCI IAM policies.

Why this answer

Database resources in OCI are grouped under the 'database-family' resource type for IAM policies.

16
Multi-Selecteasy

Which THREE storage options can be used with OCI Compute instances?

Select 3 answers
A.File Storage
B.Local SSD only
C.Block Volume
D.Tape drive
E.Object Storage
AnswersA, C, E

Can be mounted as a file system.

Why this answer

Block Volume, File Storage, and Object Storage are standard.

17
Multi-Selecthard

Which THREE features are supported by OCI DNS Traffic Management Steering Policies?

Select 3 answers
A.Failover steering
B.Database connection pooling steering
C.Weighted round robin steering
D.Geolocation-based steering
E.Virtual machine hypervisor CPU steering
AnswersA, C, D

Failover policies automatically route traffic to backup endpoints if primary endpoints fail.

Why this answer

OCI Traffic Management steering policies support weighted round robin, failover, geolocation, ASN, and load balancer steering.

18
Multi-Selecthard

Which THREE statements regarding OCI Network Security Groups (NSGs) vs Security Lists are correct?

Select 3 answers
A.NSGs are mandatory for every subnet, while Security Lists are optional.
B.NSGs apply to a specific set of VNICs of your choice, whereas Security Lists apply to all VNICs in a subnet.
C.Security Lists can span across multiple VCNs, while NSGs cannot.
D.NSG rules can reference other NSGs as sources or destinations.
E.Both Security Lists and NSGs support stateful and stateless rules.
AnswersB, D, E

This is the primary architectural difference in scope between NSGs and Security Lists.

Why this answer

NSGs apply to specific VNICs and span subnets within a VCN, whereas Security Lists apply to all VNICs in a subnet. Both support stateful and stateless rules.

19
MCQhard

An administrator wants to ensure that a compute instance in a private subnet can communicate with other compute instances in a peered VCN, but cannot initiate outbound connections to the internet. Which combination of components correctly satisfies this requirement?

A.Local Peering Gateway (or DRG) and route table rules pointing to the peer VCN CIDR, with no NAT or Internet Gateway.
B.NAT Gateway and a route table pointing 0.0.0.0/0 to the peer VCN.
C.Service Gateway pointing to the peered VCN CIDR.
D.Internet Gateway attached to the private subnet route table.
AnswerA

Peering without an Internet or NAT Gateway allows VCN-to-VCN communication while blocking the internet.

Why this answer

To allow peering without internet access, you need a peering connection (LPG or DRG) and proper route table rules pointing to the peer. You should omit any Internet Gateway or NAT Gateway to prevent internet access.

20
Multi-Selecthard

Which TWO statements regarding OCI FastConnect virtual circuits are correct?

Select 2 answers
A.Only static routing is supported on FastConnect public virtual circuits.
B.A Private Virtual Circuit allows direct access to your VCN using private IP addresses.
C.You cannot attach a FastConnect virtual circuit to a Dynamic Routing Gateway.
D.FastConnect virtual circuits must traverse the public internet with IPSec encryption.
E.FastConnect requires BGP for dynamic routing across private virtual circuits.
AnswersB, E

Private virtual circuits extend your on-premises network into your VCN privately.

Why this answer

FastConnect virtual circuits can be public (for accessing public Oracle services without internet) or private (for extending your datacenter to your VCN). They support static routing or BGP dynamic routing.

21
Multi-Selecthard

Which THREE actions occur or are required when migrating an OCI compartment containing resources to a new parent compartment? (Choose three.)

Select 3 answers
A.All compute instances in the compartment are automatically terminated and restarted.
B.Virtual Cloud Networks must be deleted before moving the compartment.
C.Policies that reference the moved compartment by path may need to be updated.
D.All child compartments and resources within the moved compartment are relocated along with it.
E.The user must have permissions to manage compartments in both the source and destination compartments/tenancy.
AnswersC, D, E

Hierarchical path references in policies can break or change when a compartment's parent path changes.

Why this answer

Moving a compartment requires policies in both source and destination compartments/tenancy, and all child compartments/resources move along with it.

22
MCQeasy

Which OCI service feature enables you to run software containers without provisioning virtual machines or managing Kubernetes clusters, offering simple container execution?

A.Container Instances
B.Bare Metal Compute
C.Dedicated VM Hosts
D.Instance Pools
AnswerA

Container Instances run containers directly without server management.

Why this answer

OCI Container Instances provide serverless execution for containers without requiring VMs or Kubernetes clusters.

23
MCQeasy

Which feature of Autonomous Database allows you to create a point-in-time read-only or read-write copy of your database instantly without duplicating all the underlying physical data blocks?

A.Database Cloning
B.Database backup and restore
C.Manual RMAN duplicate command
D.Data Pump Export and Import
AnswerA

Database clones are created rapidly using storage virtualization technology.

Why this answer

Autonomous Database cloning allows you to create quick metadata-based clones (full or metadata clones) without duplicating all storage blocks initially.

24
MCQhard

You are designing a cross-tenancy architecture where Tenancy A needs to allow a specific group from Tenancy B to manage Object Storage buckets in a specific compartment within Tenancy A. What mechanism must be established in Tenancy A to enable this?

A.Create local user accounts in Tenancy A for every user in Tenancy B's group.
B.Establish a Remote VCN Peering connection between Tenancy A and Tenancy B.
C.Share the Object Storage bucket directly using pre-authenticated requests.
D.Define an IAM policy in Tenancy A endorsing the group from Tenancy B, and a policy in Tenancy B committing to the access.
AnswerD

Cross-tenancy authorization requires an endorsement policy in the resource tenancy and a commitment policy in the principal tenancy.

Why this answer

Cross-tenancy access requires the target tenancy (Tenancy A) to define an endorsement, and the source tenancy (Tenancy B) to define a corresponding commitment.

25
Multi-Selectmedium

Which TWO deployment options are available when provisioning an Oracle Autonomous Database? (Choose two.)

Select 2 answers
A.Shared Exadata Infrastructure
B.Local on-premises hypervisor virtual machines
C.Standard OCI Block Volume multi-attach storage clusters
D.Dedicated Exadata Infrastructure
E.Bare metal single-tenant instances without Exadata infrastructure
AnswersA, D

Shared infrastructure is a multi-tenant option managed entirely by Oracle.

Why this answer

Autonomous Database can be provisioned on either Shared Exadata Infrastructure or Dedicated Exadata Infrastructure.

26
MCQeasy

Which type of compute shape provides the lowest cost per core for general-purpose workloads by utilizing ARM-based Ampere processors?

A.VM.Standard.A1.Flex
B.VM.Standard.E4.Flex
C.BM.DenseIO2.52
D.VM.Standard3.Flex
AnswerA

Ampere A1 shapes use ARM processors, providing high core counts and cost efficiency.

Why this answer

OCI Ampere A1 Compute shapes (VM.Standard.A1.Flex) use ARM processors and offer high power efficiency and cost-effectiveness for scale-out workloads.

27
Multi-Selectmedium

Which TWO of the following tasks can be performed using the Oracle Cloud Agent on compute instances? (Choose two.)

Select 2 answers
A.Modifying DNS records in external third-party domain registrars
B.Executing remote script commands via Run Command service
C.Configuring VCN security list packet filtering rules
D.Collecting detailed performance monitoring metrics
E.Managing physical data center hardware maintenance and rack replacements
AnswersB, D

Run Command plugin allows executing scripts on instances securely without SSH.

Why this answer

Oracle Cloud Agent enables plugins for collecting monitoring metrics, executing run commands remotely, and managing OS compliance and patching.

28
MCQhard

An OCI customer has a VCN with CIDR 10.0.0.0/16. They have deployed a Kubernetes cluster (OKE) where worker nodes are placed in a private subnet. The cluster requires internal service discovery and pod-to-pod communication across different worker subnets. What is required in the subnet route table to support standard OKE cluster networking?

A.A default 'local' route covering the VCN CIDR (10.0.0.0/16) pointing to 'local' target
B.A route pointing to a NAT Gateway for every pod CIDR
C.A Service Gateway for container image downloads
D.A route pointing 0.0.0.0/0 to an Internet Gateway
AnswerA

The 'local' route enables all subnets within the same VCN to communicate with each other natively.

Why this answer

Standard OKE subnets require intra-VCN routing, which is automatically handled by the default local route (10.0.0.0/16 pointing to 'local'), ensuring all subnets within the VCN can communicate freely.

29
MCQhard

You are configuring a Data Guard association for an Autonomous Database on Dedicated Infrastructure. How is the Data Guard standby database provisioned and managed?

A.You enable Data Guard through the OCI Console, and OCI automatically provisions and manages the standby database.
B.You must manually configure Oracle Net listener files and run 'DGMGRL' commands from the OS command line.
C.You must back up the database to Object Storage and restore it manually as a standby in the target region.
D.Data Guard is not supported on Autonomous Database Dedicated; you must use GoldenGate instead.
AnswerA

OCI automates Autonomous Data Guard provisioning and lifecycle management.

Why this answer

On Dedicated Exadata Infrastructure, Autonomous Data Guard is enabled via the OCI Console or API by selecting the peer region, and OCI automates the provisioning and synchronization of the standby.

30
MCQhard

Which Terraform file extension does Resource Manager support?

A..yaml
B..json
C..conf
D..tf
AnswerD

Standard Terraform files use the .tf extension.

Why this answer

Resource Manager supports standard .tf files for configuration.

31
MCQhard

An enterprise architecture spans three VCNs in the same OCI region: VCN-Hub (10.0.0.0/16), VCN-Spoke1 (10.1.0.0/16), and VCN-Spoke2 (10.2.0.0/16). You attach all three VCNs to a single Dynamic Routing Gateway (DRG). You need to route traffic from Spoke1 to Spoke2 via the Hub VCN (service inspection model). Which DRG feature allows you to achieve this transit routing setup?

A.Local Peering Gateways with cross-region peering attachments
B.DRG route tables and import/export route distribution maps
C.Virtual Circuit FastConnect multipath routing
D.Internet Gateway route translation rules
AnswerB

DRG route tables enable transit routing between VCNs attached to the same DRG by managing route propagation and custom routing rules.

Why this answer

DRG route tables allow you to customize how traffic flows between attachments. By using DRG attachments and custom route tables on the DRG, you can route traffic from Spoke1 to the Hub VCN attachment, and then from the Hub back out to Spoke2.

32
MCQmedium

You are migrating a legacy application to OCI. The application relies heavily on multicast network traffic to synchronize state between backend nodes. Which OCI networking feature should you configure to support multicast?

A.Attach a NAT Gateway configured for multicast translation.
B.Configure an Internet Gateway with multicast proxy enabled.
C.Enable multicast routing on the Dynamic Routing Gateway (DRG).
D.OCI VCNs do not support IP multicast; the application must be redesigned to use unicast.
AnswerD

IP multicast is not supported in OCI VCN routing.

Why this answer

OCI Virtual Cloud Networks (VCNs) operate at Layer 3 and do not support IP multicast traffic. Application architectures must be redesigned to use unicast or alternative synchronization mechanisms.

33
MCQmedium

You need to grant an OCI Function permission to read objects from an OCI Object Storage bucket. How should you configure this securely?

A.Make the Object Storage bucket completely public so any function can read from it without authentication.
B.Create a dynamic group for the functions and write an IAM policy granting the dynamic group read access to the bucket.
C.Embed the tenancy administrator API signing key directly in the function's source code.
D.Attach a user credential to the function environment variables.
AnswerB

Dynamic groups and IAM policies provide secure, credential-less resource-to-resource authentication in OCI.

Why this answer

To allow OCI Functions or other services to access other OCI resources securely, you create a dynamic group containing the function(s) and write an IAM policy granting that dynamic group permissions to access the target resource.

34
Multi-Selectmedium

Which TWO statements are true regarding OCI IP addresses and VNICs?

Select 2 answers
A.Private IP addresses are permanent and can never be unassigned from a VNIC.
B.A VNIC can only belong to one subnet at a time, but can span multiple VCNs.
C.VNICs in private subnets can be assigned public IP addresses directly.
D.Every VNIC is assigned at least one primary private IP address.
E.A VNIC can have multiple secondary private IP addresses assigned to it.
AnswersD, E

A primary private IP address is mandatory when creating a VNIC.

Why this answer

Every VNIC has a primary private IP address assigned from its subnet CIDR block, and can optionally have secondary private IP addresses and public IP addresses (ephemeral or reserved).

35
Multi-Selectmedium

Which TWO actions should you take to troubleshoot an OCI compute instance that has become completely unresponsive and unreachable over SSH? (Choose two.)

Select 2 answers
A.Delete the VCN and recreate all networking subnets.
B.Log into the physical data center and connect a physical keyboard to the server rack.
C.Reinstall the OCI tenancy IAM security policies.
D.Access the instance via the Serial Console connection to inspect system logs and kernel messages.
E.Check OCI Monitoring metrics to determine if CPU, memory, or network utilization caused a bottleneck or crash.
AnswersD, E

Serial console provides direct text access to troubleshoot unresponsive systems.

Why this answer

When an instance is unreachable over SSH, you can use the Serial Console to view boot logs and interactive terminal prompts, or check instance metrics in OCI Monitoring.

36
MCQmedium

You are managing a Kubernetes cluster on OCI (OKE) and need to upgrade the Kubernetes control plane version. What happens to the existing worker nodes when you perform a control plane upgrade?

A.The cluster becomes completely inaccessible, and all pods are evicted permanently.
B.Control plane upgrades are blocked until all worker nodes are upgraded first.
C.All worker nodes are automatically terminated and recreated with the new version.
D.Worker nodes continue to run workloads, but you must manually or via node pool upgrades bring them to the matching version.
AnswerD

Control plane and worker node upgrades are decoupled in OKE; worker nodes must be upgraded separately.

Why this answer

When you upgrade the control plane in OKE, the worker nodes continue running workloads normally, but they should eventually be upgraded to remain within supported version skew limits.

37
Multi-Selecteasy

Which TWO pieces of information are required when configuring an OCI IAM Identity Provider for SAML federation? (Choose two.)

Select 2 answers
A.The physical rack serial number in the data center
B.The SAML 2.0 metadata XML file provided by the external Identity Provider
C.The root compartment database sysadmin password
D.A unique name for the Identity Provider within OCI IAM
E.The local VCN CIDR block
AnswersB, D

The metadata XML file contains the necessary endpoints, certificates, and entity IDs.

Why this answer

Configuring a SAML 2.0 IdP requires the IdP metadata XML file (or metadata URL) and a name for the IdP in OCI.

38
Multi-Selecthard

Which THREE configurations are required for a functioning File Storage Service mount?

Select 3 answers
A.Public internet gateway
B.Export options
C.Subnet
D.Mount target
E.Block volume attachment
AnswersB, C, D

Required for access control.

Why this answer

A mount target, a subnet, and export options are essential.

39
MCQeasy

What is the primary benefit of using OCI Container Instances compared to managing containers on OCI Container Engine for Kubernetes (OKE)?

A.Container Instances offer lower pricing for long-running enterprise microservices than OKE.
B.Container Instances allow direct access to bare metal hypervisors.
C.Container Instances support multi-cluster service meshes and advanced ingress controllers.
D.Container Instances allow you to run containers directly without managing servers, clusters, or orchestrators.
AnswerD

Container Instances provide serverless execution for containers, removing infrastructure management overhead.

Why this answer

OCI Container Instances are serverless container execution environments that allow you to run containers instantly without having to provision, manage, or scale underlying virtual machines or Kubernetes control planes.

40
MCQhard

You are configuring a Data Guard association for an Oracle Base Database System. You want to minimize performance impact on the primary database while ensuring zero data loss in the event of a failure. Which Data Guard protection mode should you configure?

A.Maximum Performance
B.Maximum Availability
C.Maximum Protection
D.Maximum Throughput
AnswerB

Maximum Availability provides zero data loss with automatic fallback to asynchronous mode if the standby fails.

Why this answer

Maximum Availability protection mode guarantees zero data loss (synchronous redo transport) while ensuring that if the standby is unavailable, the primary continues processing transactions asynchronously.

41
Multi-Selecthard

Which THREE actions should you take when preparing a custom Linux VM image for export and import across OCI tenancies or regions? (Choose three.)

Select 3 answers
A.Embed tenancy administrator API signing keys in plaintext within `/etc/passwd`.
B.Remove persistent network interface rules (such as udev network interface mapping rules).
C.Format all root partitions using proprietary Windows NTFS file systems.
D.Ensure cloud-init is installed and properly configured to handle first-boot initialization.
E.Verify that the image format is either QCOW2 or RAW before exporting to Object Storage.
AnswersB, D, E

Removing persistent network rules prevents interface naming conflicts when launched on new hardware.

Why this answer

When preparing custom images for export/import, you must ensure cloud-init is installed and configured, clean up persistent network rules (like udev rules), and ensure the image is in a supported format (QCOW2 or RAW).

42
MCQhard

You are deploying a Container Engine for Kubernetes (OKE) cluster and want to ensure that worker nodes are distributed across separate physical hardware infrastructures to maximize fault tolerance. Which feature should you configure during cluster creation?

A.Node Pool Fault Domains
B.VCN Route Tables
C.Kubernetes Horizontal Pod Autoscaler
D.Pod Security Policies
AnswerA

Configuring node pools across multiple fault domains ensures node distribution on separate physical hardware.

Why this answer

Fault domains ensure that instances are distributed across physical hardware that has independent power and top-of-rack switches. OKE supports specifying fault domains or availability domains for node pools.

43
Multi-Selectmedium

Which THREE of the following are true about OCI Block Volume backups?

Select 3 answers
A.Can be scheduled via policies
B.Stored in Object Storage
C.Can be incremental
D.Available only in US regions
E.Must be deleted before resizing
AnswersA, B, C

Backup policies automate the process.

Why this answer

They can be manual or scheduled, and they are stored in Object Storage.

44
MCQmedium

An administrator needs to allow a group of developers to view IAM policies across the tenancy without allowing them to modify or delete any policies. Which policy statement accomplishes this?

A.Allow group DevViewers to manage policy-documents in compartment root
B.Allow group DevViewers to use iam in tenancy
C.Allow group DevViewers to read policies in tenancy
D.Allow group DevViewers to inspect security-settings in tenancy
AnswerC

The 'policies' resource type combined with the 'read' verb allows viewing all IAM policies across the tenancy without granting write access.

Why this answer

Viewing policies without modification requires the 'read' or 'inspect' verb on the 'policies' resource type.

45
Multi-Selecteasy

Which TWO services provide visibility into your infrastructure usage and health?

Select 2 answers
A.Monitoring
B.Logging
C.Block Volume
D.Object Storage
E.Vault
AnswersA, B

Provides metric and health data.

Why this answer

Monitoring and Logging are the primary tools for observability.

46
Multi-Selecthard

Which THREE components are required when setting up OCI Functions to build, push, and deploy a serverless function? (Choose three.)

Select 3 answers
A.An active File Storage Service mount target attached directly to the function registry
B.A dedicated Bare Metal compute instance running Kubernetes master nodes
C.The Fn Project CLI tool installed on your machine or cloud shell
D.An OCI Functions Application acting as a logical grouping
E.An Oracle Container Registry (OCIR) repository to store container images
AnswersC, D, E

The fn CLI is used to initialize, build, and deploy functions.

Why this answer

To deploy OCI Functions, you need an Application container, an Oracle Container Registry (OCIR) repository to store function images, and the Fn CLI tool to build and deploy.

47
MCQeasy

When provisioning an Exadata Database Service on Dedicated Infrastructure, what is the fundamental hardware unit that you provision first before creating database deployments?

A.Exadata Infrastructure (Rack)
B.Individual DB System node
C.Autonomous Data Warehouse instance
D.Autonomous Container Database
AnswerA

You provision the Exadata Infrastructure resource first, representing the physical hardware rack, before deploying VM clusters and databases.

Why this answer

To use Exadata Database Service on Dedicated Infrastructure, you must first provision an Exadata Cloud Infrastructure resource (the rack/hardware), and then create VM clusters and databases on it.

48
Multi-Selecthard

Which TWO statements are true regarding the behavior of dynamic groups and instance principals? (Choose two.)

Select 2 answers
A.Instance principals only function when connected to an on-premise Active Directory domain controller.
B.Dynamic groups require human users to manually approve every API call made by the instance.
C.Compute instances must have static username and password credentials configured in their environment variables.
D.Instance principals allow compute instances to make API calls to OCI services securely without storing credentials on the instance.
E.Dynamic groups are used to group instances together so IAM policies can grant them permissions.
AnswersD, E

Instance principals use temporary tokens managed by the local metadata service.

Why this answer

Instance principals allow compute instances to make API calls securely without managing credentials, authorized via dynamic groups and policies.

49
MCQmedium

You are managing an OKE cluster and need to inspect application container logs that are written to stdout/stderr by pods running on worker nodes. What is the standard kubectl command to view these logs?

A.kubectl get events
B.kubectl logs <pod-name>
C.kubectl describe pod
D.oci compute instance list-logs
AnswerB

`kubectl logs` streams or prints stdout/stderr from container pods.

Why this answer

`kubectl logs <pod-name>` is the standard command to retrieve container logs from stdout/stderr in a Kubernetes cluster.

50
Multi-Selectmedium

Which TWO actions can be performed on an Oracle Autonomous Transaction Processing database using the OCI Console? (Choose two.)

Select 2 answers
A.Scale up or down the number of OCPUs and storage capacity.
B.Manually configure custom standby redo log files using SQL*Plus.
C.Directly access the database server via SSH using root privileges.
D.Download the client credentials wallet (wallet.zip).
E.Modify the underlying Linux operating system kernel parameters.
AnswersA, D

You can modify OCPUs and storage dynamically through the OCI console.

Why this answer

Through the OCI Console, administrators can manage database users, scale CPU and storage resources, restart the database, and configure backups.

51
MCQmedium

Which command-line utility is used to manage OCI Block Volumes?

A.nfsstat
B.fdisk
C.mount
D.oci-cli
AnswerD

The OCI CLI is used to interact with the OCI control plane.

Why this answer

The OCI CLI is the standard tool to manage all OCI resources, including block volumes.

52
Multi-Selectmedium

Which TWO actions can you perform in the Logging service?

Select 2 answers
A.Change the OS kernel version
B.Recompile source code
C.Search and view logs
D.Create alarms based on log queries
E.Directly SSH into a log file
AnswersC, D

Logs are indexed for fast searching.

Why this answer

Logging allows you to search logs and create alarms on logs.

53
Multi-Selectmedium

Which TWO networking services or features in OCI can be used to restrict incoming traffic to specific compute instances?

Select 2 answers
A.Security Lists
B.Service Gateway
C.Dynamic Routing Gateway
D.Network Security Groups (NSGs)
E.Internet Gateway
AnswersA, D

Security Lists act as virtual firewalls for all VNICs in a subnet.

Why this answer

Security Lists (at the subnet level) and Network Security Groups (at the VNIC level) are the two primary virtual firewall features used in OCI to control ingress and egress traffic.

54
MCQhard

You are managing a large OKE cluster and notice that pods are failing to schedule because the worker nodes have run out of ephemeral storage. What is the most robust architectural solution to address this?

A.Change the VCN MTU size from 9000 to 1500.
B.Attach a Block Volume to the Kubernetes control plane nodes.
C.Restart the Kubernetes API server.
D.Increase the size of the worker node boot volumes in the node pool configuration or add node pools with larger boot volumes.
AnswerD

Kubernetes ephemeral storage writes to the node's root filesystem (boot volume). Increasing boot volume size provides more ephemeral storage space.

Why this answer

Ephemeral storage on OKE nodes is tied to the boot volume or local storage. To fix ephemeral storage exhaustion, you can resize the worker node boot volumes, add node pools with larger boot volumes, or configure emptyDir volumes to use specific storage mediums.

55
Multi-Selectmedium

Which THREE resource types are associated with networking and can be managed via OCI IAM policies? (Choose three.)

Select 3 answers
A.autonomous-databases
B.virtual-network-family
C.object-storage-buckets
D.route-tables
E.internet-gateways
AnswersB, D, E

virtual-network-family covers VCNs, subnets, gateways, and related networking components.

Why this answer

Networking resource types include virtual-network-family, subnets, route-tables, and security-lists.

56
Multi-Selectmedium

Which TWO of the following metrics are commonly used in OCI Autoscaling configurations for Instance Pools? (Choose two.)

Select 2 answers
A.VCN packet drop error rates
B.Memory utilization percentage
C.CPU utilization percentage
D.Object Storage bucket download count
E.Database transaction commit latency
AnswersB, C

Memory utilization is also supported as a threshold metric for autoscaling.

Why this answer

Autoscaling configurations for instance pools in OCI support CPU utilization and Memory utilization metrics.

57
MCQhard

You are troubleshooting a custom OCI compute image that fails to boot properly after launching an instance. The instance gets stuck in a pre-boot state. Where can you view serial console logs to diagnose the low-level boot sequence and kernel panic messages?

A.Object Storage boot bucket logs
B.OCI Logging service via custom log agents
C.OCI Compute Instance Serial Console connection
D.OCI Monitoring service under instance metrics
AnswerC

Serial console connections provide direct text-based access to the instance's console output during boot.

Why this answer

OCI provides access to the serial console for compute instances, allowing administrators to view low-level kernel boot messages, GRUB menus, and interactive login prompts even if network access is down.

58
MCQmedium

You are setting up DNS steering in OCI Traffic Management using a Response Pool. An endpoint in the pool fails its health check. How does OCI Traffic Management respond to DNS queries?

A.It automatically removes the unhealthy endpoint from DNS responses and routes traffic to healthy endpoints.
B.It returns a 504 Gateway Timeout error to the DNS client.
C.It shuts down the VCN associated with the endpoint.
D.It continues to send traffic to the failed endpoint until manual intervention occurs.
AnswerA

Health checks ensure DNS steering policies dynamically route around failed endpoints.

Why this answer

When an endpoint fails its health check, OCI Traffic Management automatically removes it from the DNS response rotation, routing queries only to healthy endpoints according to the steering policy.

59
MCQhard

You need to automate the movement of old backups to Archive storage. Which approach is most efficient?

A.Lifecycle Policy
B.Bucket replication
C.Manual script
D.Copy and delete command
AnswerA

Lifecycle policies handle this automatically.

Why this answer

Lifecycle policies automate this task without manual intervention.

60
MCQmedium

You need to ensure that your Resource Manager stack uses a specific version of Terraform. Where is this configured?

A.Cloud Shell environment
B.Job execution parameters
C.Stack settings
D.Terraform provider block
AnswerC

The Terraform version is selected at the stack level.

Why this answer

You define the Terraform version during the creation of the stack settings.

61
MCQhard

You are writing a dynamic group matching rule for compute instances that need access to Object Storage. The instances must be members of the dynamic group if their OCID matches a specific value or if they are tagged with a specific freeform tag. Which syntax is valid for matching either condition using any/all operators?

A.MATCH {instance.id == 'ocid1.instance...' OR tag.Project == 'Alpha'}
B.DYNAMIC {instance.id IN ('ocid1.instance...'))}
C.ANY {instance.id = 'ocid1.instance...', tag.Project.Value = 'Alpha'}
D.ALL {instance.id = 'ocid1.instance...', tag.Project.name = 'Alpha'}
AnswerC

The ANY operator combined with matching criteria for instance.id and freeform/defined tags is the correct syntax for dynamic groups.

Why this answer

Dynamic group matching rules support matching conditions using ALL or ANY operators with parameters such as instance.id and tag.namespace.tagkey.

62
Multi-Selectmedium

Which THREE services integrate directly with OCI IAM for access control and governance? (Choose three.)

Select 3 answers
A.Object Storage
B.Client web browsers
C.On-premise physical power generators
D.Database
E.Compute
AnswersA, D, E

Object Storage uses IAM policies to control bucket and object access.

Why this answer

OCI services such as Object Storage, Compute, and Database integrate with IAM for authorization and security.

63
Multi-Selecthard

Which THREE resource types are included under the 'compute-instance-family' or 'instance-family' in OCI IAM policies? (Choose three.)

Select 3 answers
A.Virtual Cloud Networks
B.Compute instances
C.Autonomous Databases
D.Console histories
E.Boot volumes
AnswersB, D, E

Compute instances are the primary resource in instance-family.

Why this answer

The 'instance-family' resource type encompasses compute instances, boot volumes, and associated volume attachments.

64
Multi-Selecthard

Which THREE factors should you evaluate when determining whether to use an Oracle Base Database System versus Exadata Cloud Service?

Select 3 answers
A.Requirement for MySQL compatibility in the Oracle database kernel
B.Need for Exadata-specific features such as Smart Scan and Hybrid Columnar Compression
C.Whether the operating system must be Microsoft Windows or Linux
D.Workload performance, I/O throughput, and scalability requirements
E.Budget and cost constraints, as Exadata infrastructure has a higher entry cost than single VM base systems
AnswersB, D, E

Exadata features are required if leveraging Smart Scan and HCC.

Why this answer

Decision factors include workload performance/scale requirements, Advanced Exadata features like Smart Scan, and budget/cost considerations.

65
MCQhard

Your organization uses Identity Domains. You need to configure a dynamic group matching rule that includes all compute instances tagged with a defined tag namespace 'Department' and key 'CostCenter' equal to '400'. What is the correct syntax?

A.ANY {defined.tag.Department.CostCenter == '400'}
B.ALL {instance.tag.Department.CostCenter = '400'}
C.MATCH {tag:Department:CostCenter = '400'}
D.ALL {tag.Department.CostCenter.value = '400'}
AnswerD

The correct dynamic group syntax for defined tags includes the namespace, key, and .value property equal to the target string.

Why this answer

Dynamic group rules support defined tags using the syntax tag.<namespace>.<tagkey>.value = '<value>' or similar notation depending on the exact schema, but standard OCI grammar uses tag.namespace.tagkey.value = 'val' or tag.namespace.tagkey = 'val'. Specifically, for defined tags: tag.Department.CostCenter.value = '400'.

66
Multi-Selecthard

Which THREE attributes can be evaluated in an OCI dynamic group matching rule for compute instances? (Choose three.)

Select 3 answers
A.The operating system user password hash
B.Compartment OCID (instance.compartment.id)
C.Instance OCID (instance.id)
D.Tags applied to the instance (tag.namespace.tagkey)
E.The public IP address of the user launching the instance
AnswersB, C, D

Instances can be grouped by the compartment in which they reside.

Why this answer

Dynamic group rules support matching by compartment ID, instance ID, and defined/freeform tags.

67
MCQmedium

You need to back up an Oracle Base Database System to an external target or move database files manually using RMAN. Which OCI storage service is typically used as a staging area for manual RMAN backups?

A.OCI File Storage Service (FSS) NFS mount
B.OCI Object Storage
C.OCI Block Volume service attached via iSCSI
D.Local NVMe scratch disks
AnswerB

Object Storage is the standard cloud target for RMAN backup sets and database exports.

Why this answer

OCI Object Storage is used for storing RMAN backup sets when performing manual backups or database migrations.

68
Multi-Selecthard

Which THREE things must be configured to use Logging Analytics?

Select 3 answers
A.Load Balancer
B.Database instance
C.Log Source
D.Log Group
E.Entity
AnswersC, D, E

This defines the format and parsing.

Why this answer

Logging Analytics requires a log group, a log source, and an entity.

69
MCQhard

You manage an instance pool backed by an autoscaling configuration. The pool reaches its maximum limit of 10 instances due to a traffic spike. A hardware maintenance event triggers a retirement notification for one of the instances in the pool. How does OCI Instance Pools with Autoscaling handle this retired instance?

A.The instance is terminated, and a new instance is provisioned to replace it, temporarily exceeding the maximum limit if necessary until scaling rules scale it back down.
B.The instance is terminated and not replaced because the pool is already at its maximum limit.
C.The instance is replaced automatically by the instance pool to maintain the operational state, managing lifecycle events independently of active autoscaling metrics.
D.The autoscaling configuration must be manually edited to increase the max limit before the instance can be replaced.
AnswerC

Instance pools manage the lifecycle of instances to ensure the target number of instances are operational, substituting retired instances seamlessly.

Why this answer

Instance pools automatically replace unhealthy or retired instances to maintain the desired capacity. If an instance is retired, the pool provisions a new instance to replace it, even if autoscaling has reached its maximum size, because minimum/desired capacity rules take precedence over instance retirement recovery.

70
MCQeasy

What is the primary function of an OCI NAT Gateway?

A.To allow private subnet instances to initiate outbound connections to the internet while blocking inbound connections.
B.To peer two VCNs in the same region.
C.To allow inbound internet traffic to reach private database instances securely.
D.To connect on-premises datacenters to OCI VCNs.
AnswerA

NAT Gateways provide unidirectional outbound internet access for private resources.

Why this answer

A NAT Gateway enables instances in a private subnet to initiate outbound connections to the internet (e.g., for software patches) without accepting inbound connections from the internet.

71
MCQhard

Which service should you use to migrate physical data centers to OCI via physical hardware shipping?

A.Storage Gateway
B.Data Transfer Service
C.FastConnect
D.Object Storage replication
AnswerB

This service uses physical appliances for bulk data move.

Why this answer

Data Transfer Service uses physical appliances to move data.

72
MCQhard

An OCI customer has configured an IPSec VPN connection with static routing. They add a new subnet with CIDR 10.0.5.0/24 to their VCN, but on-premises hosts cannot communicate with instances in this new subnet. What must be updated in the IPSec VPN configuration?

A.Recreate the Customer-Premises Equipment (CPE) object.
B.Add the new VCN subnet CIDR (10.0.5.0/24) to the static routes in the OCI IPSec Connection configuration.
C.Switch the VPN from static routing to a NAT Gateway.
D.Update the VCN Internet Gateway routing table.
AnswerB

Static IPSec connections require explicit static route definitions in OCI for all destination subnets.

Why this answer

When using static routing for an OCI Site-to-Site VPN, you must define the static route rules (on-premises networks and VCN static routes) in the OCI IPSec connection configuration so Oracle knows which traffic to tunnel.

73
MCQeasy

An OCI administrator needs to ensure that infrequently accessed data stored in an Object Storage bucket automatically transitions to Archive Storage after 90 days to reduce costs. Which feature should the administrator configure?

A.Object Storage Replication Policy
B.Object Storage Lifecycle Policy
C.OCI Data Transfer Service
D.Block Volume Backup Policy
AnswerB

Lifecycle rules allow you to automate moving objects between tiers or deleting them after a certain period.

Why this answer

Object Storage Lifecycle Policy rules can be created to automatically transition objects from Standard storage to Infrequent Access or Archive Storage based on a specified number of days since creation or modification.

74
MCQmedium

You are configuring an OCI Load Balancer and need to ensure that client source IP addresses are preserved when traffic reaches the backend web servers. Which feature should you enable?

A.Enable 'Preserve Client IP' in the backend set configuration.
B.Attach a NAT Gateway to the Load Balancer subnet.
C.Switch the load balancer shape to asymmetric routing mode.
D.Configure an Internet Gateway route on the backend servers.
AnswerA

Preserving client IP allows backend servers to log the true client IP instead of the load balancer IP.

Why this answer

To preserve client source IP addresses, you should enable 'Backend Set - SSL/TCP' or configure proxy protocol / appropriate backend header settings depending on the listener type, but specifically in OCI Load Balancer, backend sets support preserving client IP headers.

75
MCQeasy

What is the function of the OCI IAM 'inspect' verb?

A.It allows users to inspect security vulnerabilities on compute instances.
B.It allows users to create, update, and delete resources.
C.It allows users to list resources of a given type without viewing their contents or configuration details.
D.It allows users to download object storage bucket files.
AnswerC

Inspect grants listing/enumeration rights only, making it the most restrictive verb.

Why this answer

The 'inspect' verb allows users to list resources within a compartment or tenancy without viewing their sensitive configuration details or contents.

Page 1 of 7

Page 2

All pages