Acquia Certified Developer - Drupal 10 온라인 연습
최종 업데이트 시간: 2025년11월17일
당신은 온라인 연습 문제를 통해 Acquia Acquia Certified Developer D10 시험지식에 대해 자신이 어떻게 알고 있는지 파악한 후 시험 참가 신청 여부를 결정할 수 있다.
시험을 100% 합격하고 시험 준비 시간을 35% 절약하기를 바라며 Acquia Certified Developer D10 덤프 (최신 실제 시험 문제)를 사용 선택하여 현재 최신 90개의 시험 문제와 답을 포함하십시오.
정답:
Explanation:
hook_theme() is used in custom modules or themes to declare new theme hooks and associate them with template files or render callbacks.
정답:
Explanation:
To load a CSS file globally, declare it in a library defined in libraries.yml, and then include that library in the theme’s .info.yml file using the libraries: key.
정답:
Explanation:
CSS and JS files are defined in a theme’s THEMENAME.libraries.yml. These libraries are then attached via the .info.yml file or in templates and preprocess functions.
정답:
Explanation:
To define a sub-theme, use the base theme: key in the .info.yml file and provide the machine name of the theme you are extending (e.g., base theme: classy).
정답:
Explanation:
A sub-theme extends a base theme and inherits its templates, styles, and behaviors. This allows developers to build on existing themes without starting from scratch.
정답:
Explanation:
Themes can define regions like header, footer, sidebar, and content. These regions can then be assigned blocks using the UI. “Route” is not a theme region.
정답:
Explanation:
Block regions are declared in the theme’s .info.yml file using the regions: key. Each region is given a machine name and human-readable label.
정답:
Explanation:
Custom themes should reside in /themes/custom. Placing themes in core directories is discouraged, as they are overwritten during core updates.
정답:
Explanation:
Core Drupal includes themes like Stark and Olivero, which can be used as base themes. Zen and Bootstrap are popular but contributed themes and not part of core.
정답:
Explanation:
Every custom theme must have an .info.yml file named after the theme’s machine name (e.g., mytheme.info.yml). This file defines metadata like name, base theme, regions, and libraries.
정답:
Explanation:
When a field is deleted via configuration import, Drupal flags it for deletion. It remains in the database until cleaned up by cron, ensuring a safe and reversible process.
정답:
Explanation:
The Configuration Synchronization UI allows viewing differences between active and staged configs and exporting the entire configuration set. Editing YAML directly or running cron are done elsewhere.
정답:
Explanation:
Configuration is “staged” when there's a difference between exported YAML files and the active config.
You can preview and selectively import changes using the Configuration Synchronization UI or Drush.
정답:
Explanation:
Block titles are part of configuration. To translate them, enable both Interface Translation and Configuration Translation modules, then use the UI or YAML files to provide translations.
정답:
Explanation:
The drush config:import command (or drush cim) brings configurations from the sync directory into the active configuration store, applying changes made in development or staging.