All Practice Exams

100+ Free Acquia Site Builder D10 Practice Questions

Pass your Acquia Certified Site Builder - Drupal 10 exam on the first try — instant access, no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
Not published Pass Rate
100+ Questions
100% Free
1 / 100
Question 1
Score: 0/0

A site builder needs to create a new content type for blog articles that will have a title, body text, hero image, publication date, and author reference. In Drupal 10, where do they go to create this content type?

A
B
C
D
to track
2026 Statistics

Key Facts: Acquia Site Builder D10 Exam

50

Exam Questions

Acquia Academy

75 min

Exam Duration

Acquia Academy

68%

Passing Score

Acquia Academy

$155

Exam Fee

Acquia / Webassessor

6

Knowledge Domains

Acquia blueprint

60-100 hrs

Study Time

Recommended

The Acquia Certified Site Builder - Drupal 10 exam has 50 scenario-based questions in 75 minutes, requires 68% to pass, and costs $155 USD via Webassessor. The exam covers six domains: Understanding Drupal, Content Modeling, Site Display, Site Configuration, Contributed Module and Theme Management, and Security and Performance. It targets non-developers who configure Drupal sites with core and contributed modules - no PHP coding is required.

Sample Acquia Site Builder D10 Practice Questions

Try these sample questions to test your Acquia Site Builder D10 exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1A site builder needs to create a new content type for blog articles that will have a title, body text, hero image, publication date, and author reference. In Drupal 10, where do they go to create this content type?
A.Structure > Content types > Add content type
B.Configuration > Content authoring > Content types
C.Extend > Content types
D.Content > Add content > Create type
Explanation: Content types in Drupal 10 are managed under Structure > Content types. From there, the 'Add content type' button creates a new bundle of the Node entity. After creating the content type, you add fields via Manage fields, configure the entry form via Manage form display, and configure output via Manage display.
2Which Drupal 10 entity type is used to organize and tag content with hierarchical or flat sets of terms?
A.Block content
B.Taxonomy
C.Menu link
D.Comment
Explanation: Taxonomy is Drupal's classification system. Vocabularies are containers for taxonomy terms, which can be flat (e.g., Tags) or hierarchical (e.g., Categories with parent/child relationships). Content references taxonomy via an Entity reference field targeting the Taxonomy term entity.
3A site builder wants the same content node to display differently on the homepage teaser vs. its full page view. Which Drupal feature controls this?
A.Form modes
B.View modes
C.Block visibility
D.Display suite blocks
Explanation: View modes (also called display modes for output) define alternate renderings of an entity, such as Default, Teaser, RSS, Full, and Search index. Each view mode can show different fields and use different formatters. Form modes are the analog for entry forms (e.g., Default vs. Register).
4Which field type should a site builder choose to store a single line of plain text under 255 characters, such as a product SKU?
A.Text (formatted, long)
B.Text (plain)
C.Text (formatted)
D.List (text)
Explanation: Text (plain) stores a single short string of plain text up to a configurable maximum (commonly 255 characters) with no formatting. Text (formatted) adds a text format/filter for limited HTML. Long variants store unlimited text. List (text) restricts values to a predefined allowed-values list.
5What is the purpose of the 'Manage form display' tab on a content type?
A.Configures which fields appear when viewing the content
B.Configures which fields and widgets appear on the create/edit form
C.Controls who can edit the content
D.Sets the URL pattern for new content
Explanation: Manage form display controls how fields appear on entity entry forms: which fields are visible, in what order, in which form mode, and which widget each field uses (e.g., Autocomplete vs. Select list for an Entity reference). Manage display is the equivalent for output (formatters).
6A site builder needs to install a contributed module from Drupal.org on a Composer-managed Drupal 10 project. What is the recommended approach?
A.Download the tarball and extract it into modules/contrib/
B.Use 'composer require drupal/<module_name>' then enable it via the admin UI or Drush
C.Edit composer.json manually and copy the module folder
D.Upload the .tar.gz file via Extend > Install new module
Explanation: Drupal 10 projects are Composer-managed. The recommended workflow is 'composer require drupal/<module_name>', which downloads the module to modules/contrib and updates composer.lock. You then enable it under Extend (admin/modules) or with 'drush en <module_name>'. Tarball/ZIP installs are deprecated for Composer projects.
7Which Drupal core module automatically generates clean, SEO-friendly URLs from content titles, such as /blog/my-first-post instead of /node/123?
A.Pathauto
B.Redirect
C.Path
D.Token
Explanation: Pathauto is a contributed module (drupal/pathauto) that automatically generates URL aliases for entities based on configurable patterns using tokens (e.g., /blog/[node:title]). Path is the core module providing manual aliases. Redirect handles 301/302 redirects. Token provides token replacement values used by Pathauto.
8Where in Drupal 10 does a site builder place blocks into theme regions and configure their visibility?
A.Structure > Block layout
B.Appearance > Settings
C.Configuration > User interface > Blocks
D.Structure > Display modes > Blocks
Explanation: Block layout (admin/structure/block) is where you place block instances into theme regions (e.g., Header, Sidebar, Footer) and configure visibility conditions (Pages, Roles, Content types, Languages). Each placed block is bound to a specific theme; switching themes presents a different layout.
9A custom block of type 'Promo banner' should appear only on pages whose path starts with /products. Which visibility condition should be used?
A.Content types: Product
B.Pages: /products/*
C.Roles: Anonymous
D.Languages: English
Explanation: Block visibility 'Pages' accepts path patterns with the wildcard '*'. '/products/*' matches every path starting with /products/ (e.g., /products, /products/widgets/blue). 'Content types' would only match node pages of that type, missing landing pages or views. Roles and Languages filter audiences, not paths.
10What is the difference between a Block type and a Custom block in Drupal 10?
A.Block types are templates; Custom blocks are instances of those templates with content
B.Block types are core; Custom blocks are contributed
C.Block types are PHP classes; Custom blocks are YAML config
D.There is no difference - they are synonyms
Explanation: Block types (admin/structure/block/block-content/types) are bundles of the Block content entity that define a reusable structure with fields. Custom blocks (admin/structure/block/block-content) are individual content entities created from a block type and then placed into regions via Block layout.

About the Acquia Site Builder D10 Exam

Acquia Certified Site Builder - Drupal 10 validates that you can plan, configure, and operate a Drupal 10 site without writing custom code. The exam covers Drupal fundamentals, content modeling with content types and fields, site display via Views and Block Layout, site configuration including users, roles and workflows, contributed module and theme management, and core security and performance settings.

Questions

50 scored questions

Time Limit

75 minutes

Passing Score

68%

Exam Fee

$155 (Acquia / Webassessor (Kryterion))

Acquia Site Builder D10 Exam Content Outline

20%

Understanding Drupal

Drupal architecture, content types, nodes, blocks, users, taxonomy terms, menus, regions, themes, modules, configuration vs content

20%

Content Modeling

Fields (Text, Long Text, Number, Boolean, Reference, Image, File, Email, Date, List, Entity Reference), cardinality, widgets, formatters, form modes, view modes, taxonomy

20%

Site Display

Block Layout, custom block types and visibility, Views (Page, Block, Feed, Attachment, Embed, REST Export), filters, sorts, relationships, contextual filters, pager, format, Layout Builder, image styles, responsive images, menus

15%

Site Configuration

Users, roles and permissions, Content Moderation and Workflows, multilingual (Content Translation, Configuration Translation, Interface Translation), Configuration Management, text formats, search, cron

15%

Contributed Module and Theme Management

Composer-managed installs, drupal.org evaluation, Pathauto, Redirect, Token, Metatag, Webform, Diff, Backup and Migrate, themes (Olivero, Claro), security advisories, distributions

10%

Security and Performance

Page Cache, Dynamic Page Cache, BigPipe, JS/CSS aggregation, image styles, CDN, trusted_host_patterns, error display, public vs private files, security updates, text format permissions

How to Pass the Acquia Site Builder D10 Exam

What You Need to Know

  • Passing score: 68%
  • Exam length: 50 questions
  • Time limit: 75 minutes
  • Exam fee: $155

Keys to Passing

  • Complete 500+ practice questions
  • Score 80%+ consistently before scheduling
  • Focus on highest-weighted sections
  • Use our AI tutor for tough concepts

Acquia Site Builder D10 Study Tips from Top Performers

1Build a real Drupal 10 site end to end: install via Composer, create at least three content types with varied fields, place blocks, build several Views, and add a contributed module like Pathauto
2Memorize Drupal vocabulary: nodes, entities, bundles, fields, view modes, form modes, regions, blocks, taxonomy vocabularies and terms
3Know the difference between Manage fields, Manage form display, and Manage display - this comes up repeatedly in scenario questions
4Practice Views: master the difference between Page, Block, Feed, Attachment, Embed and REST Export displays plus filters, sorts, relationships and contextual filters
5Lock in the three multilingual modules: Content Translation (entities), Configuration Translation (config strings) and Interface Translation (UI strings)
6Drill the caching layers: Internal Page Cache (anonymous), Internal Dynamic Page Cache, BigPipe, CSS/JS aggregation and CDN
7Review Drupal 10 specifics: CKEditor 5 (default editor), Olivero (default front-end theme), Claro (default admin theme), Bartik and Seven removed

Frequently Asked Questions

What is the Acquia Certified Site Builder - Drupal 10 exam?

It is the Acquia certification for Drupal 10 site builders - the role that configures Drupal sites using core and contributed modules without writing custom PHP. The exam validates that you can model content with content types, taxonomy and fields, build listings with Views, place blocks, manage users and permissions, configure workflows, install contributed modules, and tune basic security and performance.

How many questions and how much time does the exam have?

The exam has 50 scenario-based questions in 75 minutes. The passing score is 68%, so you need at least 34 correct answers. Questions are predominantly multiple-choice with a single best answer, written as workflow scenarios you would encounter when building a Drupal site.

How much does the Acquia Site Builder Drupal 10 exam cost?

The exam fee is US$155 paid through Webassessor (Kryterion), which is the official Acquia certification provider. You can take the exam at a Kryterion test center or via online proctoring. Plan for an additional retake fee if you do not pass on the first attempt.

Does the Site Builder exam require coding?

No. The Site Builder credential is intentionally for non-developers - the exam covers Drupal's user interface and configuration, not PHP, JavaScript, or theming code. If you write custom PHP, themes, or modules, look at the Acquia Certified Drupal 10 Developer or Front End Specialist exams instead.

What topics does the Site Builder Drupal 10 exam cover?

Six domains: Understanding Drupal (architecture and core concepts), Content Modeling (content types, fields, taxonomy, view and form modes), Site Display (Views, Block Layout, Layout Builder, menus, image styles), Site Configuration (users, roles, permissions, Workflows, multilingual, Configuration Management), Contributed Module and Theme Management (Composer, Pathauto, Webform, Metatag, Redirect, themes), and Security and Performance (caching, BigPipe, aggregation, CDN, security updates).

How long should I study for the Acquia Site Builder Drupal 10 exam?

Most candidates study 60-100 hours over 4-8 weeks if they have built at least one Drupal 10 site end to end. If you are new to Drupal, plan 120+ hours and build at least two practice sites covering content types, Views, and contributed modules. Practice with at least 100 exam-style questions before scheduling.

Where can I take the Acquia Site Builder Drupal 10 exam?

Acquia delivers the exam through Webassessor, powered by Kryterion. You can take it in person at a Kryterion test center or via online proctoring from your home or office. Register at certification.acquia.com, pay the US$155 fee, and bring two valid forms of ID on test day.