Browse Exams — Mock Exams & Practice Tests

1Z0-1072-25 Cheatsheet — OCI Architect Associate (Networking, LB, Compute/Storage)

Last-mile 1Z0-1072-25 review: VCN design pickers, connectivity options, load balancing patterns, compute/storage/database selection, HA basics, and observability.

Use this for last‑mile review. Pair it with the Syllabus.


1) Canonical 3‑tier placement (public edge, private tiers)

    flowchart LR
	  U["Users"] --> LB["Load Balancer (public subnet)"]
	  LB --> APP["App tier (private subnet)"]
	  APP --> DB["DB tier (private subnet)"]

Exam rule: if a design exposes databases directly to the internet, it’s almost always wrong.


2) Networking decision table (high-yield)

RequirementPreferWhy
Public ingress to appIGW + public LBcontrolled entry point
Private subnet outboundNAT gatewayoutbound only, no inbound
Private access to Oracle servicesService gatewayno public internet path
On-prem / cross-VCN routingDRGhub for routing

Security Lists vs NSGs

You need…Prefer
Simple subnet-wide rulesSecurity lists
Granular per-app rulesNSGs

3) Connectivity (concept-level selection)

RequirementPrefer
Fast setup / lower costIPSec VPN
Higher bandwidth / consistent latencyFastConnect
Many VCNs / hub-spokeDRG-based hub

4) Compute + storage + database pickers

Storage

WorkloadPrefer
App artifacts, logs, backupsObject Storage
VM boot/data disksBlock Volumes
Shared filesystemFile Storage

Database (purpose-level)

RequirementPrefer
Managed Oracle DB with automationAutonomous Database
More control over configurationDB System

5) HA basics (what the associate exam expects)

  • Use multiple fault domains/availability domains for resilience.
  • Put app tier behind load balancers with health checks.
  • Prefer managed services where possible; ensure backups are configured.