I B M C E R T I F I C A T I O N
F1002600 IBM Certified Advanced Architect v2 PLUS IBM Professional Cloud Developer v6 Practice Exam
Exam Number: 4319 | Last updated April 17, 2026 | 383+ questions across 5 vendor-aligned objectives
Hands-on architects who still ship production code are the audience for the F1002600 bundle. Combining Advanced Architect v2 with Professional Cloud Developer v6, it targets leaders who prototype tough integrations, defend API contracts at the whiteboard, and then ship the first working version themselves. Candidates should be fluent with reference architectures, microservice design, and modern Java, Node.js, or Python stacks on IBM Cloud.
Opening the blueprint at 25%, Architecture and API Design covers landing zones, API-led design, domain-driven boundaries, and contract-first workflows. Application Construction takes 22%, covering Java, Node.js, and Python runtimes, IBM Cloud SDKs, and serverless functions. At 20%, Integration Patterns covers API Connect, Event Streams, MQ, and event-driven choreography versus orchestration.
Trailing domains fill out the exam. DevOps and Release Engineering accounts for 18% and spans Continuous Delivery toolchains, Tekton pipelines, and progressive delivery. Security and Identity represents 15% and spans IAM, secrets, and threat-model-informed design. Questions reward architects who think like engineers and engineers who think like architects — the scenarios deliberately test this overlap.
Every answer links to the source. Each explanation below includes a hyperlink to the exact IBM documentation page the question was derived from. PowerKram is the only practice platform with source-verified explanations. Learn about our methodology →
711
practice exam users
94%
satisfied users
91%
passed the exam
4.7/5
quality rating
Test your F1002600 architect v2 cloud dev v6 knowledge
10 of 383+ questions
Question #1 - Architecture and API Design
A new customer-facing platform at Linden Cove Bank must support contract-first API development so partners can onboard early from the spec.
Which practice enables that workflow?
A) Write the server first and reverse-engineer the OpenAPI later
B) Author and version an OpenAPI document in Git as the source of truth; generate server stubs, client SDKs, and API Connect products from that spec
C) Share only example payloads with partners, no formal spec
D) Publish whatever each microservice happens to return today
Show solution
Correct answers: B – Explanation:
Contract-first with an OpenAPI document in Git feeds stubs, SDKs, and API Connect — the IBM architecture-developer reference for partner-ready APIs. Reverse-engineering loses the early-partner benefit. Example-only documentation is not a contract. Ad-hoc publication drifts by the hour. Source: Check Source
Question #2 - Architecture and API Design
An architect at Orchard Vale Insurance is modeling a claims domain with strong boundaries between intake, assessment, and payout contexts.
Which design approach keeps services decoupled?
A) Apply domain-driven design with bounded contexts; each service owns its aggregates and exposes contracts to other contexts via APIs or events
B) One shared database with all teams reading and writing all tables
C) A single monolith with classes named after each domain
D) Let each team share direct object references across services
Show solution
Correct answers: A – Explanation:
Bounded contexts with per-service aggregates and contract-based integration is IBM’s microservice design reference. Shared databases and shared objects defeat domain boundaries. A named-only monolith is still a monolith. Source: Check Source
Question #3 - Architecture and API Design
A new landing zone for Pinewood & Straits Holdings will host three unrelated workloads. Each needs its own network boundary but should share central identity.
Which landing-zone design meets the requirement?
A) A hub-and-spoke account model with shared-services hub, per-workload spoke accounts, Transit Gateway connectivity, and central IAM
B) A single flat account for all three workloads
C) Three disconnected IBM Cloud organizations with no shared identity
D) No landing zone at all
Show solution
Correct answers: A – Explanation:
Hub-and-spoke with central identity is the IBM landing-zone reference for multi-workload enterprises. Flat accounts lose segmentation. Disconnected orgs break identity. No landing zone forfeits baseline controls. Source: Check Source
Question #4 - Application Construction
A recommendation microservice at Westshire Retail is chosen to run in a Node.js runtime on IBM Cloud. Traffic varies from zero to thousands of requests per second.
Which runtime choice best fits the workload pattern?
A) A permanent VSI running 24/7
B) IBM Cloud Code Engine (or Functions) running the service as an event-driven function that scales to zero and up on demand
C) A bare-metal server in one region
D) An always-on Kubernetes Deployment scaled manually
Show solution
Correct answers: B – Explanation:
Serverless on IBM Cloud scales to zero between bursts — the canonical fit for highly variable workloads. Permanent VSIs and bare metal pay for idle. Manually scaled Deployments still carry baseline cost and toil. Source: Check Source
Question #5 - Application Construction
A Java microservice at Ashmont Financial must authenticate to an IBM Cloud service without shipping long-lived API keys inside the container.
Which pattern satisfies the requirement?
A) Use an IAM trusted profile bound to the workload identity, obtaining short-lived tokens at runtime
B) Embed an API key in a config file
C) Use the CTO’s personal API key
D) Disable IAM and allow anonymous access
Show solution
Correct answers: A – Explanation:
Trusted profiles with short-lived tokens is the IBM Cloud IAM identity-for-workloads pattern. Embedded or personal keys are both anti-patterns. Disabling IAM removes all access control. Source: Check Source
Question #6 - Application Construction
A Python batch job at Darnley & Co. runs a heavy analysis once per hour and idles otherwise.
Which runtime pattern is most cost-aligned?
A) Ask an engineer to trigger the job manually every hour
B) Run as a permanently deployed pod
C) Run continuously on a dedicated VSI
D) Run as a scheduled Code Engine job triggered by a cron expression, scaling to zero between runs
Show solution
Correct answers: D – Explanation:
Scheduled Code Engine jobs fit periodic batch workloads and scale to zero between runs — the IBM Cloud reference. Permanent pods and VSIs pay for idle. Manual triggers do not scale and are error-prone. Source: Check Source
Question #7 - Integration Patterns
A trade-reconciliation flow at Westmeath Exchange needs guaranteed ordered delivery per account, replay for 24 hours, and at-least-once consumption.
Which integration backbone satisfies the requirements?
A) Email notifications to a shared inbox
B) HTTP calls with best-effort retries
C) A shared CSV file updated periodically
D) IBM Event Streams (Kafka) using partition keys per account, 24-hour retention, and consumer offsets
Show solution
Correct answers: D – Explanation:
Kafka partition keys preserve per-key ordering, retention enables replay, and consumer offsets support at-least-once — Event Streams’ core capability. HTTP retries, CSVs, and emails lack these semantics. Source: Check Source
Question #8 - Integration Patterns
A migration team at Corvallis Manufacturing debates choreography versus orchestration for a claims workflow that has strict step-order requirements and explicit compensation logic.
Which pattern better matches the workflow?
A) Choreography, where each service reacts to events freely without a central coordinator
B) Orchestration, with a central workflow service invoking steps in sequence and owning compensation logic
C) No integration; each step runs manually
D) Single synchronous call that does everything at once
Show solution
Correct answers: B – Explanation:
Orchestration suits ordered workflows with compensation; choreography suits loose coupling without strict ordering. Manual steps and monolithic synchronous calls fail both integration and resilience requirements. Source: Check Source
Question #9 - DevOps and Release Engineering
A delivery team at Hazelgrove Pharma wants progressive delivery for a new endpoint, routing only 5% of traffic to the new version until metrics look healthy.
Which pattern best satisfies the requirement?
A) Deploy to a staging cluster only and never promote
B) Deploy to 100% of traffic immediately
C) Canary release via the service mesh or ingress, with Argo Rollouts (or equivalent) shifting traffic based on observed SLI health
D) Require manual approval from every developer for every rollout
Show solution
Correct answers: C – Explanation:
Canary progressive delivery with SLI-driven promotion is the IBM Cloud reference for blast-radius-controlled rollouts. All-at-once deploys defeat the goal. Staging-only deploys never reach production. Mass manual approval is ceremony, not control. Source: Check Source
Question #10 - Security and Identity
A microservice architecture at Kestrel Insurance stores database credentials, third-party API keys, and signing keys used by event pipelines.
Which IBM Cloud design addresses lifecycle, rotation, and auditability of the secrets?
A) Environment variables set permanently at deploy time
B) A shared Slack channel where secrets are posted when needed
C) IBM Cloud Secrets Manager with automated rotation, trusted-profile-based retrieval at runtime, and Activity Tracker logging for every access
D) Secrets printed out and kept in a binder
Show solution
Correct answers: C – Explanation:
Secrets Manager plus trusted profiles plus Activity Tracker covers rotation, retrieval, and audit — the IBM Cloud reference. Slack, permanent env vars, and printed secrets fail lifecycle, rotation, and audit. Source: Check Source
Get 383+ more questions with source-linked explanations
Every answer traces to the exact IBM documentation page — so you learn from the source, not just memorize answers.
Exam mode & learn mode · Score by objective · Updated April 17, 2026
Learn more...
What the F1002600 architect v2 cloud dev v6 exam measures
- Architect and specify landing zones, API-led designs, domain boundaries, and contract-first workflows to deliver designs that survive both architecture review and implementation pressure
- Build and ship Java, Node.js, Python runtimes, IBM Cloud SDKs, and serverless functions to prototype and then productize services that match the whiteboard sketch
- Choreograph and orchestrate API Connect, Event Streams, IBM MQ, and event-driven flows to compose services cleanly while avoiding hidden coupling and cascading failure
- Release and progress Continuous Delivery toolchains, Tekton pipelines, and progressive delivery to ship at pace while keeping blast radius small and rollback options open
- Model and protect IAM, secrets, and threat-model-informed design to bake security into the design rather than bolt it on during penetration testing
How to prepare for this exam
- Review the official exam guide to understand every objective and domain weight before you begin studying
- Work through the relevant IBM Training learning path — ibm certified advanced architect v2 plus ibm professional cloud developer v6 F1002600 — to cover vendor-authored material end-to-end
- Get hands-on inside IBM TechZone or a comparable sandbox so you can practice the console tasks, CLI commands, and APIs the exam expects
- Tackle a real-world project at your workplace, a volunteer role, or an open-source repository where the technology under test is actually in use
- Drill one exam objective at a time, starting with the highest-weighted domain and only moving on once you can teach it to someone else
- Study by objective in PowerKram learn mode, where every explanation links back to authoritative IBM documentation
- Switch to PowerKram exam mode to rehearse under timed conditions and confirm you consistently score above the pass mark
Career paths and salary outlook
Hands-on architects who still ship code earn well in startups, enterprises, and cloud consultancies alike:
- Application Architect — $150,000–$200,000 per year, designing and building cloud-native applications end-to-end (Glassdoor salary data)
- Staff Engineer / Architect — $160,000–$215,000 per year, leading technical design while staying hands-on (Indeed salary data)
- Cloud Consulting Architect — $155,000–$210,000 per year, advising enterprises on cloud-native transformation (Glassdoor salary data)
Official resources
Work through the official IBM Training learning path for this certification, which bundles videos, labs, and skill tasks aligned to every objective. The official exam page lists the full objective breakdown, prerequisite knowledge, and scheduling details.
