Certifications · CBA · Mock Exam · Set 1

CBA Mock Exam · Set 1

Fifty multiple-choice questions, weighted question-for-question to the four domains of the official CBA curriculum — sixteen on Customizing Backstage, twelve on Backstage Development Workflow, eleven each on Backstage Infrastructure and Backstage Catalog. This is the first of two CBA papers on this course: it leans on definitions and single-file, single-command recall — "which file," "which command," "which side of the split" — the way a first honest measurement of the whole syllabus should, before Set 2 pushes harder into layered scenarios that make you reason across two or three competencies at once. The CBA is knowledge-based, not hands-on — no live cluster, no terminal, no grading of code you actually type — so this is a paper you sit cold, in one block, with no notes open. Answer first, then read the explanation directly beneath your choice; the domain tag on every item tells you exactly which page to reread if you miss it.

☺ Explain it like I'm 10

This is a practice quiz about the front desk you've been studying, not a building exercise — you pick the best answer out of four (or two, when it says so), and it tells you straight away whether you got it right and why. The trick is answering before you peek at the explanation, even on the questions you're only half-sure about, because a wrong answer here is free — it just points you back to the exact page you need to reread. There's no monorepo to actually run and nothing to install for this particular quiz; the whole thing lives in your head, the same way the real one does.

🦋🐢Your hosts for this topic: Mira the Butterfly & Timmy the Turtle — Mira owns every domain this paper draws from, and Timmy holds the stopwatch and won't stop it for anything, because the discipline of sitting this cold, in one sitting, is half of what the exercise is actually for.

How this paper is weighted

☺ Like you're 10: The questions are shared out exactly the way the real test shares out its marks — the biggest topic gets the most questions, and here the arithmetic happens to come out in clean whole numbers.

The CBA's four official domain weights — 32, 24, 22, 22 — sum to exactly 100%, and against fifty questions they divide with no rounding at all: 16, 12, 11, 11, which also sum to exactly 50. That tidiness is a coincidence of picking fifty rather than some other paper size, not a property of the exam itself — don't read anything into it beyond "the arithmetic happened to be clean this time." What it does mean is that this paper's proportions track the real blueprint precisely, question for question, so your score by domain is a faithful little mirror of where the real 100% goes.

DomainOfficial weightQuestions hereWhere to revise
🦋 Customizing Backstage32%16CBA — the exam · The Backstage Portal Model
🦫 Backstage Development Workflow24%12CBA — the exam · Backstage
🦉 Backstage Infrastructure22%11Backstage · CBA — the exam
🐿️ Backstage Catalog22%11Missing-catalog-entity drill · CBA — the exam
90-minute pace · 50 questions · 75% to pass Block 1 Q1–17 · ~30m Block 2 Q18–34 · ~30m Block 3 Q35–50 · ~30m 0 80 90 min Weighted to the four official CBA domains Customizing 32% Dev Workflow 24% Infra 22% Catalog 22% Every block mixes all four domains No block leans on one topic — you'll see Customizing and Catalog questions throughout, not front-loaded. The Linux Foundation does not publish the real question count, so treat 50 as a study size, not a claim about the real paper.
◆ Key idea

Score your domains, not just your total. A 76% built from "solid everywhere except Customizing" is a much more dangerous result than the same 76% built from "strong everywhere, weak on Catalog," because Customizing alone carries nearly a third of the real paper — almost half again as much as either Infrastructure or Catalog. Fix in weight order, not in the order you happened to notice the mistakes.

Sit it like the real thing

☺ Like you're 10: No notes, no open tabs, one sitting, straight through — and never leave a question blank, because a guess has a real chance of being right and a blank one never does.

The CBA is delivered online and remote-proctored, closed-book, with no documentation allowance — unlike the hands-on Kubernetes exams this course assumes but doesn't reteach, there is no "browse the docs while you work" concession here, because there is no terminal to work in at all. Sit this paper the same way: close every other tab, set a single timer, and commit to an answer on every item even when you're genuinely unsure. Nothing published states whether Linux Foundation multiple-choice exams penalize a wrong guess beyond simply not earning the point — treat that as unconfirmed rather than fact — but the practical advice holds regardless: eliminate what you can, then commit. Never leave a question blank.

⚠ Exam details change — the official page is the authority

What's safe to state structurally: the CBA is a CNCF/Linux Foundation associate-level, knowledge-based multiple-choice exam — not hands-on, and not a lab where anyone grades a Dockerfile you actually build — delivered online under remote proctoring, with no formal prerequisite. Two numbers the Linux Foundation does publish and this paper is calibrated against: 90 minutes to sit it, and 75% or above to pass (the Linux Foundation's Multiple Choice Exam FAQ states this pass mark applies to every LF multiple-choice exam). What is not published is the real question count — third-party figures for it are unverified, so this paper's size of fifty was chosen only because it divides the four domain weights with no rounding, not because it matches a real number. Price, retake terms, eligibility window and certification validity are all revised over time too — see the full logistics table. Confirm everything on the official Linux Foundation CBA page before you register or pay — this page is a study aid, not a substitute for reading it.

The paper — 50 questions across three blocks

☺ Like you're 10: Fifty questions, three blocks, every domain mixed into every block — read the question, pick one answer (or two, when it says so), then check yourself before moving to the next.

Each question names its domain in parentheses so you can total your score by domain afterward — the real exam won't label them, so once you've sat this cold, consider a second pass with the labels covered to see how many you can still place from content alone. A handful of questions are marked (Select TWO); full credit there needs both correct letters.

Block 1 — Q1–17

Q1 (Customizing Backstage). Which file in a Backstage app decides which tabs and cards appear for a given entity's kind and type?

Check the answer

B. EntityPage.tsx decides the tabs and cards per kind and type. app-config.yaml is runtime configuration, catalog-info.yaml describes one entity, and package.json just lists dependencies.

Q2 (Backstage Development Workflow). Which single command scaffolds a brand-new Backstage app as a Yarn workspace?

Check the answer

B. npx @backstage/create-app@latest is the scaffold command, producing a Yarn workspace with packages/app and packages/backend. None of the other three are real Backstage tooling.

Q3 (Backstage Infrastructure). In the client-server split, which side is permitted to hold a GitHub App's private key?

Check the answer

C. Anything shipped to packages/app ships to the browser and is public. Only the backend, which never ships to a client, may hold a real credential — and the standard pattern is a separate credentials file included into the backend's config, not a literal inline value.

Q4 (Backstage Catalog). Which annotation, added under metadata.annotations, lights up the Docs tab on an entity's page?

Check the answer

C. backstage.io/techdocs-ref lights up the Docs tab. kubernetes-id wires the Kubernetes tab, and managed-by-location/orphan are set automatically for you and used when debugging ingestion.

Q5 (Customizing Backstage). A frontend plugin needs data from GitHub's API, so a developer hardcodes a personal access token as a string inside a React component to call it directly from the browser. What's wrong with this design?

Check the answer

C. The frontend is a browser bundle; anything embedded in it is visible to anyone who opens dev tools. Third-party calls that need a credential belong in a backend plugin, which the frontend then calls without ever seeing the token itself.

Q6 (Backstage Development Workflow). By default, on which ports do the frontend and backend listen when you run yarn dev on a fresh create-app project?

Check the answer

A. The app serves on :3000 and the backend answers on :7007, both with hot reload while yarn dev runs.

Q7 (Backstage Infrastructure). Why is SQLite considered unacceptable for a production Backstage deployment?

Check the answer

B. SQLite is fine for a laptop demo, but it has no persistence guarantee across a restart — a production catalog needs PostgreSQL, configured under backend.database.

Q8 (Backstage Catalog). Where does a catalog-info.yaml file conventionally live?

Check the answer

B. Living at the root of the repo it describes is the whole trick — the description ships with the code, so it stays true as the code changes.

Q9 (Customizing Backstage). A team installs @backstage/plugin-kubernetes into packages/app but never installs @backstage/plugin-kubernetes-backend. What's the most likely symptom?

Check the answer

B. Many plugins ship as a matched frontend/backend pair. Installing only the frontend half gives you a tab or card with nowhere to fetch its data from.

Q10 (Backstage Development Workflow). What does yarn tsc do in a Backstage monorepo, and why does the curriculum treat it as more than a style check?

Check the answer

C. Because the entire monorepo is TypeScript, yarn tsc is a genuine gate, not a linter suggestion — a type error stops the build cold.

Q11 (Backstage Infrastructure). Which config key would you set to point Backstage's catalog database at PostgreSQL rather than the SQLite default?

Check the answer

B. Setting backend.database.client: pg, with connection details typically pulled from environment variables, is how a production app-config.yaml moves off SQLite.

Q12 (Backstage Catalog). Which of the following is NOT one of the entity kinds named in the CBA curriculum's catalog domain?

Check the answer

B. Namespace is a Kubernetes concept, not a Backstage catalog entity kind. The kinds you need are Component, API, Resource, System, Domain, Group, User, Location and Template.

Q13 (Customizing Backstage). "Make changes to React code in Backstage App" most directly points at which pairing of files?

Check the answer

B. App.tsx declares routes and top-level structure; EntityPage.tsx decides what appears per entity kind and type. Both are files every portal owner learns by heart.

Q14 (Backstage Development Workflow, Select TWO). A plugin ships as a matched pair. Which TWO commands correctly install both halves into a fresh app?

Check the answer

A and B. yarn workspace app add scopes the frontend half into packages/app, and yarn workspace backend add scopes the backend half into packages/backend. Global installs (C, D) and a nonexistent scaffold command (E) don't reflect how a Yarn workspace actually adds a dependency to one package.

Q15 (Backstage Infrastructure, Select TWO). Which TWO of the following correctly describe app-config.yaml layering?

Check the answer

A and B. Configuration is one layered app-config.yaml with local and production overrides stacked on top, and ${ENV_VAR} substitution runs throughout — C, D and E all contradict that.

Q16 (Backstage Catalog). What happens if catalog.rules.allow omits Template from its list of kinds?

Check the answer

C. The allow-list gates which kinds the catalog will accept at all — omit Template and every golden-path template silently refuses to appear, with no error to point you at why.

Q17 (Customizing Backstage). What does the new backend system's backend.add(import('@backstage/plugin-catalog-backend')) pattern replace, compared to older Backstage versions?

Check the answer

A. The new backend system lets each plugin be added to a backend instance rather than assembled by hand — know this shape, because it's what a current create-app actually produces.

Block 2 — Q18–34

Q18 (Customizing Backstage). Which library provides Backstage's core layout primitives — Grid, Card, Typography, Button — that its own component library is built on top of?

Check the answer

C. Backstage's component library sits on Material UI, which is why "using Material UI components" is its own named competency — a custom card that ignores it looks visibly broken next to everything around it.

Q19 (Backstage Development Workflow). Which command builds a production container image from the correct Dockerfile in a Backstage monorepo?

Check the answer

B. The production image is built from packages/backend/Dockerfile — the compiled frontend rides inside that same image, served by the backend.

Q20 (Backstage Infrastructure). Why is the production container image built from packages/backend/Dockerfile rather than from two separate Dockerfiles for frontend and backend?

Check the answer

B. In production, the compiled frontend is served by the backend — one image, one process, not a frontend container calling a backend container over HTTP.

Q21 (Backstage Catalog, Select TWO). A service that used to appear on the catalog page has vanished. Which TWO checks are the most useful first steps?

Check the answer

A and B. A missing or unreachable catalog-info.yaml, or a provider filter that no longer matches, are the two most common causes — nothing here points at data corruption or a plugin reinstall, which are drastic, low-probability first moves.

Q22 (Customizing Backstage). Why must the scaffolder backend hold real, powerful credentials — the ability to create repositories, grant team access, and open pull requests?

Check the answer

B. Clicking "New Service (Golden Path)" has to actually create a repository, wire up access and open a PR — real actions on a real SCM, which is why the scaffolder backend is a credentialed robot, not a form that just writes files.

Q23 (Backstage Development Workflow). What is the purpose of npx @backstage/cli versions:bump?

Check the answer

B. Backstage releases frequently and its packages must move together — versions:bump is the whole upgrade story, and a portal left alone for a year is genuinely painful to bring forward without it.

Q24 (Backstage Infrastructure). A team wants Backstage's GitHub integration to authenticate as an application with narrowly scoped, revocable permissions rather than as an individual's personal account. What should integrations.github reference?

Check the answer

B. A GitHub App, referenced with $include from a separate file, is the recommended pattern — scoped, revocable, and never a personal token tied to one employee.

Q25 (Backstage Catalog). What is an "orphan" entity in the Backstage catalog?

Check the answer

C. An orphan lingers on after the Location that originally produced it has been removed — it's one of the three recurring failure modes worth recognizing on sight.

Q26 (Customizing Backstage). A card you've added to EntityPage.tsx renders visibly narrower or misaligned compared to Backstage's own built-in cards on the same page. What has most likely gone wrong?

Check the answer

B. Because the app's whole layout system sits on Material UI, a custom card that skips Grid looks visibly out of place next to everything built with it.

Q27 (Backstage Development Workflow). Which command runs only the backend half of a Backstage app, isolated from the frontend, useful when debugging backend-only issues?

Check the answer

A. yarn workspace backend start (and its counterpart yarn workspace app start) runs one half at a time — the client-server split made concrete in a command.

Q28 (Backstage Infrastructure). "Deploy Backstage to production" names a competency broader than "run docker build." Which of the following is genuinely part of it, beyond having a database?

Check the answer

A. Real identity — an auth provider plus a resolver — sits alongside a real database and injected secrets as part of what "production" actually means for a Backstage deployment.

Q29 (Backstage Catalog). What is a "dangling owner reference," and what should you check first when you find one?

Check the answer

B. Ownership links go nowhere when the referenced Group was never ingested — the fix is ingesting org data first, not chasing the individual component's YAML.

Q30 (Customizing Backstage, Select TWO). Which TWO statements correctly distinguish frontend from backend Backstage plugins?

Check the answer

A and B. The frontend/backend split is exactly this: React in the browser holding no secrets, versus Node holding credentials, database access and routes. C, D and E all invert or misstate the split.

Q31 (Backstage Development Workflow). What does yarn build:all produce, as distinct from yarn build:backend?

Check the answer

B. build:all is the workspace-wide production build; build:backend targets specifically the backend bundle that then feeds the Dockerfile.

Q32 (Backstage Infrastructure). Which of these correctly describes app.baseUrl and backend.baseUrl in a straightforward single-service deployment?

Check the answer

C. Because the backend serves the compiled frontend directly in production, both URLs commonly resolve to the same origin — one process answering both jobs.

Q33 (Backstage Catalog). A "Register existing component" click in the UI, where a human pastes a repository URL, creates which kind of object?

Check the answer

B. Manual registration creates a Location — the catalog then reads whatever that Location points at and ingests the entities it describes.

Q34 (Customizing Backstage). A backend plugin needs to expose a new HTTP route other parts of the system can call. Where is that route typically exposed, and what must the code serving it never do?

Check the answer

A. A backend plugin's typical job is exposing /api/<plugin>, fetching from a third-party API or persisting data — and the credentials it holds to do that must never be echoed back into a response a browser can read.

Block 3 — Q35–50

Q35 (Customizing Backstage). What is the essential difference between "customizing Backstage plugins" (the exam competency) and building an entirely new plugin from a blank template?

Check the answer

B. The competency is about reshaping what already exists — a new tab, a reconfigured card, an edited route — not necessarily authoring a brand-new plugin package.

Q36 (Backstage Development Workflow). Which best describes what "understand local development workflows" tests, beyond simply running yarn dev once?

Check the answer

A. Being able to isolate and run one half of the app at a time is a genuinely useful debugging skill this competency is checking for, not just "can you type yarn dev."

Q37 (Customizing Backstage). A frontend plugin card wants to display Kubernetes pod status for a service. Which backend plugin must be added alongside the frontend one for that data to actually appear?

Check the answer

B. The Kubernetes tab's frontend card has nothing to render without @backstage/plugin-kubernetes-backend installed and wired into the backend — the browser never talks to a cluster directly.

Q38 (Backstage Catalog). Everything in the catalog is reachable through a plain REST API. Which request correctly deletes the Location responsible for a ghost entity, without touching entities from other locations?

Check the answer

B. Deleting the Location is the correct fix — deleting the entity directly (A) just gets recreated on the next ingestion cycle, since the source that produced it is still registered.

Q39 (Customizing Backstage). Which markup would you reach for to lay out two cards side by side, each taking half the row's width, on a new EntityLayout.Route?

Check the answer

A. A Grid container with two Grid item md={6} children is the idiomatic Material UI way to split a row in half — matching the sizing and spacing every other card in the app already uses.

Q40 (Backstage Development Workflow). Which flag or file lets you layer production-specific values on top of the base config when invoking yarn build:backend?

Check the answer

A. Passing an extra --config file layers production overrides on top of the base app-config.yaml — the same layering mechanism the Infrastructure domain tests from the configuration side.

Q41 (Backstage Infrastructure). Which statement correctly describes where the catalog sits in the client-server architecture?

Check the answer

B. The catalog sits between frontend and backend conceptually, but physically it's a database the backend owns; the browser only ever sees it through the backend's API.

Q42 (Customizing Backstage, Select TWO). Which TWO files would you most directly touch to add a working "Kubernetes" tab — visible in the browser and backed by real cluster data — to a service's entity page?

Check the answer

A and B. The frontend route lives in EntityPage.tsx; the backend plugin that actually reaches the cluster has to be registered in packages/backend/src/index.ts. Neither half alone produces a working tab.

Q43 (Customizing Backstage). What is the risk of granting the scaffolder backend's GitHub App overly broad organization permissions rather than scoping it tightly to the platform team's own template repositories?

Check the answer

B. The scaffolder is a credentialed robot — the whole point of scoping it tightly is limiting the blast radius if a template is ever misused or the credential is ever compromised.

Q44 (Backstage Development Workflow). A developer runs yarn tsc and it reports no errors, then edits a .tsx file and removes a required prop from a component. What should the very next yarn tsc run do?

Check the answer

B. A missing required prop is exactly the kind of thing tsc is meant to catch before it ever reaches a build — that's what makes it a real gate rather than a formality.

Q45 (Backstage Infrastructure). Which of these is the correct interpretation of "understand the Backstage framework" as a named competency, distinct from "configure Backstage"?

Check the answer

B. One competency is conceptual — Backstage as a framework you scaffold and own — and the other is practical: the actual config keys you set. Both live under Infrastructure, but they're testing different things.

Q46 (Backstage Catalog). A colleague insists the fix for a ghost entity still showing on the catalog page is always to delete the entity object directly through the API. Why is this the wrong general approach?

Check the answer

B. Deleting the entity treats the symptom, not the source — the Location that keeps re-registering it is what actually needs to go.

Q47 (Customizing Backstage). "Understand frontend versus backend plugins" is listed first among the Customizing Backstage competencies. Why does the curriculum likely put it first?

Check the answer

B. Every other competency in this domain presumes you already know which side of the split you're editing — get that wrong and the rest of the domain doesn't make sense.

Q48 (Backstage Development Workflow). Compared to yarn install, what does yarn workspace app add @backstage/plugin-kubernetes specifically do?

Check the answer

B. yarn workspace <name> add scopes the dependency to one package in the workspace — the frontend/backend split made concrete in a package-manager command.

Q49 (Backstage Infrastructure). Two engineers disagree about where a plugin's third-party API credentials should be injected in a production deployment. One says "bake them into the Docker image at build time"; the other says "inject them from the environment at runtime." Which is more consistent with the "deploy to production" competency?

Check the answer

B. Runtime injection keeps secrets out of a distributable image and out of source control — the same "secrets injected at runtime, never committed" pattern the Infrastructure domain names elsewhere.

Q50 (Backstage Catalog). Which single sentence best distinguishes "manually registered entity locations" from "automated ingestion," as two separate named competencies?

Check the answer

B. One is a person registering a single URL by hand; the other is a scheduled provider crawling an organization at scale — and only the provider route removes entities automatically when their source file disappears.

Score yourself

☺ Like you're 10: Count your correct answers out of fifty, turn it into a percentage against the real 75% pass mark, then look at which domain cost you the most points — that second part is the part that actually helps.

The Linux Foundation's Multiple Choice Exam FAQ states that a score of 75% or above is required to pass any LF multiple-choice exam, and the CBA is one. Treat 75% here as a target to clear comfortably, not a calibrated prediction of the real sitting — this paper's wording is ours, not the CNCF's, and it isn't tuned to match the real exam's difficulty.

DomainQuestions in this paperYour scoreIf you're under two-thirds, go here
🦋 Customizing BackstageQ1, 5, 9, 13, 17, 18, 22, 26, 30, 34, 35, 37, 39, 42, 43, 47/16CBA — the exam
🦫 Backstage Development WorkflowQ2, 6, 10, 14, 19, 23, 27, 31, 36, 40, 44, 48/12Backstage
🦉 Backstage InfrastructureQ3, 7, 11, 15, 20, 24, 28, 32, 41, 45, 49/11Backstage
🐿️ Backstage CatalogQ4, 8, 12, 16, 21, 25, 29, 33, 38, 46, 50/11Missing-catalog-entity drill
Total50 questions/5075% (38/50) to clear comfortably

Whatever you scored, sort your misses into two piles before you move on, because on a paper like this one they mean different things. A question you got wrong because you genuinely didn't know the file, the command, or the annotation is a real content gap — reread the linked domain section and redo that exact question cold in a couple of days. A question you got wrong despite roughly knowing the material — you second-guessed yourself, or confused two similarly worded options under time pressure — is a confidence problem, not a knowledge gap, and the fix is more timed reps, not rereading content you already have. Either way, don't retake this exact paper minutes later; go read first, then come back.

Where each domain is taught

☺ Like you're 10: Every question above traces back to one of a handful of pages. Go back to the page, not to the wider internet.

Nothing in this paper examines anything that isn't covered somewhere on this course. Where a subject is genuinely Backstage-specific, the pages live right here on Golden Astronaut; where it's general platform-engineering ground shared with Backstage rather than unique to it, the deeper read lives on the sibling Platform Engineering CBA overview, which covers the same four domains from the other side of the trio.

Beyond the domain pages, the wider revision kit still applies: flashcards for the vocabulary, the self-check quiz for mixed recall, the glossary for anything a question assumed you already knew, and the CBA study plan for how to sequence all of this against your remaining prep time. If the hands-on side of this paper felt shakier than the recall side, the capstone's portal stage and Developer experience are worth a look too.

🎬 At Mission Control
🐰

Remy: Forty-four out of fifty! Client-server split, catalog kinds, done, done, next paper!

🦋

Mira: Which domain hid the other six, Remy? Forty-four sounds great until one domain swallowed most of them.

🐰

Remy: ...fine. Customizing. I kept assuming any card I wrote would just line up correctly without wrapping it in Grid.

🦊

Foxy: Wait, Material UI actually matters? I thought that was decoration.

🦋

Mira: It's the layout system the entire app is built on, Foxy. Skip it and your card doesn't just look wrong — it's the exact "customizing" competency worth the most marks on the whole paper.

👺

Gizmo: Or just copy someone else's EntityPage.tsx wholesale and never touch Material UI directly. Ship it! 😈

🐢

Timmy: That's exactly the gap this paper is built to catch, Gizmo. Copying a page tells you nothing about whether you understand the primitives underneath it.

🐰

Remy: Fine, fine — I'll actually open EntityPage.tsx and read the Grid section properly before I re-sit against Set 2.

🐢 Timmy's checkpoint

1. Name the four CBA domains and their weights, in weight order. 2. A frontend plugin is installed with no matching backend plugin — what's the most likely symptom, and why? 3. Name the three ways an entity enters the Backstage catalog, and which one scales to a whole organization. 4. Which file builds the production container image, and why does the compiled frontend ride inside it? 5. Why is SQLite unacceptable for a production Backstage deployment, and what replaces it? 6. Ghost entity still showing on the catalog page — what's the correct fix, and what's the common wrong one? 7. Name one thing this exam publishes officially and one thing it deliberately does not — and where would you go to confirm either before booking?

Check your answers
  1. Customizing Backstage 32%; Backstage Development Workflow 24%; Backstage Infrastructure 22%; Backstage Catalog 22%.
  2. The plugin's frontend half renders — a tab or a card — but it has nowhere to fetch its data from, so it typically shows empty or broken. Most plugins ship as a matched pair, and installing only one half is the single most common cause of "I installed the plugin and nothing shows up."
  3. Manual registration (a human registers a URL, creating a Location), static locations (URLs under catalog.locations in config), and automated ingestion via entity providers that crawl an organization on a schedule. Only providers scale — and they also remove entities when the underlying file disappears.
  4. packages/backend/Dockerfile. The compiled frontend rides inside it because in a production build the backend serves the frontend itself — one image and one process, not two containers.
  5. SQLite is development-only — it does not survive a process restart, so the catalog vanishes with it. Production uses PostgreSQL, configured under backend.database with credentials injected from the environment rather than committed.
  6. Delete the Location that created the ghost entity, not the entity itself — deleting the entity directly just gets it recreated on the next ingestion cycle, since the source that produced it is still registered.
  7. Officially published: the 90-minute duration and the 75% pass mark (from the Linux Foundation's Multiple Choice Exam FAQ). Not published: the real question count — any third-party figure for it is unverified. Confirm both, and everything else, on the official Linux Foundation CBA page before you register.

That's the full sitting. Reread whichever domain cost you the most, give it a day to settle, then move on to Set 2 — the scenario-heavy paper that assumes this baseline is already solid.

⏱️ The two CBA papers

Set 1 (you are here) · Set 2. Both are fifty questions on the same 16 · 12 · 11 · 11 domain split, so the scores are directly comparable — Set 1 leans on single-file, single-command recall, Set 2 leans harder into layered scenarios spanning two or three competencies at once. See the CBA study plan for where each paper fits against your remaining prep time, the practice-question bank for shorter drills in between, and CBA — the exam for the full domain writeup and official logistics.