Oracle Cloud Infrastructure Architect Associate (1Z0-1072) - Practice Questions¶
15 questions for OCI Architect Associate prep, weighted toward networking (25%), then compute, storage, and security (15% each), and IAM, database, and observability (10% each).
Cert page: exams/oracle/oci-architect-associate/
Question 1¶
Scenario: An instance must access Object Storage without any credential stored on it.
A. An API key in a file B. A dynamic group matching the instance, with a policy granting that dynamic group access (instance principals) C. A shared password D. A public bucket
Answer
**Correct: B** **Why:** Instance principals let a compute instance authenticate as itself, so there is no key to rotate or leak. The dynamic group's matching rule defines which instances are included, typically by compartment or by a defined tag.Question 2¶
Scenario: Two VCNs in the same region must communicate privately.
A. An internet gateway B. A local peering gateway in each VCN, with route rules and non-overlapping CIDRs C. A NAT gateway D. A service gateway
Answer
**Correct: B** **Why:** Local peering connects VCNs in the same region; remote peering through DRGs connects across regions. Both require non-overlapping address space and explicit route rules and security list entries on each side.Question 3¶
Scenario: Many VCNs and an on-premises network must interconnect with centralized routing.
A. A mesh of local peering gateways B. A dynamic routing gateway with route tables and route distribution (transit routing) C. Separate internet gateways D. A load balancer
Answer
**Correct: B** **Why:** The DRG is the hub: VCN attachments plus FastConnect or VPN attachments, with DRG route tables controlling which attachment learns which routes. A peering mesh grows quadratically and gives no central place to express policy.Question 4¶
Scenario: Security lists and network security groups both exist. Which should be preferred?
A. Security lists, since they are subnet-wide B. Network security groups, which apply to selected VNICs and can reference each other as a source or destination C. Neither D. They are identical
Answer
**Correct: B** **Why:** NSGs let you write rules like "the application NSG may reach the database NSG on 1521" without hard-coding CIDRs, which survives IP changes. Security lists apply to the whole subnet, which is coarser and harder to reason about as the subnet grows.Question 5¶
Scenario: A workload must scale out automatically based on CPU.
A. Manual instance creation B. An instance pool from an instance configuration, with an autoscaling policy on a metric C. A larger shape D. A load balancer alone
Answer
**Correct: B** **Why:** The instance configuration is the template, the pool manages the set, and the autoscaling configuration adds and removes members. Scheduled autoscaling is the alternative when the load pattern is known in advance.Question 6¶
Scenario: Block volume performance must be increased for a database.
A. Add more volumes only B. Change the volume performance level (balanced, higher performance, or ultra high performance), since IOPS scales with size and performance units C. Change the instance shape D. Use Object Storage
Answer
**Correct: B** **Why:** OCI block volumes have selectable performance tiers, and the setting can be changed on a live volume. Note that performance also scales with volume size, so a small volume at a high tier still has a ceiling.Question 7¶
Scenario: A database must survive an availability domain failure with minimal data loss.
A. Backups only B. Data Guard in synchronous (maximum availability) mode to a standby in another AD or region C. A read replica D. A larger shape
Answer
**Correct: B** **Why:** Data Guard maintains a standby that can take over, with the protection mode setting the RPO: maximum availability gives near-zero data loss at the cost of commit latency, while maximum performance is asynchronous with a larger RPO.Question 8¶
Scenario: Administrative access to a private instance is needed without a public IP.
A. A jump host with a public IP B. OCI Bastion service, creating time-limited managed SSH sessions to private resources C. Open port 22 to the internet D. A VPN for every user
Answer
**Correct: B** **Why:** The Bastion service provides ephemeral sessions with a defined TTL and IAM control over who may create them, so there is no permanently exposed jump host to patch and defend. Sessions are also audited.Question 9¶
Scenario: A load balancer must terminate TLS and route by URL path.
A. A network load balancer B. A flexible load balancer operating at layer 7, with a certificate and path-based routing rules C. DNS round robin D. A NAT gateway
Answer
**Correct: B** **Why:** The layer 7 load balancer terminates TLS and can inspect the request to route by hostname or path. The network load balancer is layer 4, preserves the source IP, and offers lower latency but cannot read a URL.Question 10¶
Scenario: Object Storage costs must fall for data accessed rarely.
A. Delete it B. Lifecycle policy rules transitioning objects to infrequent access and then archive tiers C. Compress it only D. Move to Block Volume
Answer
**Correct: B** **Why:** Lifecycle rules automate tiering and deletion. The archive tier is much cheaper per gigabyte but requires a restore before the object can be read, so it suits compliance retention rather than anything that must be available on demand.Question 11¶
Scenario: A compartment's resources must be constrained so nobody can create non-compliant configurations.
A. Documentation B. A Security Zone attached to the compartment, which denies operations violating the zone's policies C. Tags D. Budgets
Answer
**Correct: B** **Why:** Security Zones are preventive: they refuse the create or update operation, for example a public bucket or an unencrypted volume. Cloud Guard is the detective counterpart that finds problems after the fact.Question 12¶
Scenario: An alarm must notify a team when CPU exceeds a threshold.
A. Check manually B. A Monitoring alarm on the metric with a notification topic, subscribed by email, a function, or another endpoint C. A log search D. An event only
Answer
**Correct: B** **Why:** Alarms evaluate metric queries and publish to Notifications topics, which fan out to subscriptions. Events are the separate, resource-lifecycle mechanism that fires on state changes such as an instance being created.Question 13¶
Scenario: Cost must be attributed to teams sharing one tenancy.
A. Estimate B. Compartment-based reporting and cost-tracking tags, with budgets scoped accordingly C. One compartment for everything D. Split evenly
Answer
**Correct: B** **Why:** Cost-tracking tags are a specific tag category that appears in cost reports, and tag defaults on a compartment make application automatic for new resources. Without enforcement, tag coverage decays and the attribution becomes fiction.Question 14¶
Scenario: A file share must be mounted by many instances concurrently.
A. Block Volume attached to each B. File Storage service, providing NFS shares with mount targets in a subnet C. Object Storage D. Local disk
Answer
**Correct: B** **Why:** File Storage gives POSIX semantics with concurrent access, which is what shared application state or home directories need. Block volumes support multi-attach only with a cluster-aware filesystem, which is a more specialized arrangement.Question 15¶
Scenario: An architecture must span two regions for disaster recovery.
A. One region with backups B. Cross-region replication for data (Object Storage replication, Data Guard, or volume backup copies), plus infrastructure defined as code so the second region can be built and a rehearsed failover procedure C. A second availability domain D. Larger instances
Answer
**Correct: B** **Why:** Three pieces are required: the data must already be there, the infrastructure must be reproducible, and the failover must have been practiced. Missing the third is why untested DR plans fail on a dependency nobody documented.Where to go deeper¶
- OCI Architect Associate cert page - notes, practice plan, strategy
- OCI Foundations practice questions - the level below
- OCI Architect Professional practice questions - the level above
- VPC explained - cloud networking fundamentals
- π Oracle University certification - official exam pages