Search test library by skills or roles
⌘ K

About the test:

Drupalオンラインテストでは、シナリオベースのMCQを使用して、サイトの構築、テーマ、モジュール開発、管理など、Drupalの知識に関する候補者を評価します。このテストの目的は、Drupalを効果的に操作し、スケーラブルで保守可能なWebアプリケーションを設計および開発する候補者の能力を評価することです。このテストには、実践的なPHPプログラミングスキルを評価するためのコーディング質問が含まれています。

Covered skills:

  • Drupal CMS
  • Drupalテーマ
  • Drupal Site Administration
  • Drupal Site Building
  • Drupal Security
  • PHP構文
  • PHPセッション
  • Drupalモジュール
  • Drupalサイト構成
  • Drupalコンテンツ管理
  • Drupalデータベース管理
  • Drupal Performanceの最適化
  • php ooop
  • PHPプログラミング

Try practice test
9 reasons why
9 reasons why

Adaface Drupalオンラインテスト is the most accurate way to shortlist Drupal開発者s



Reason #1

Tests for on-the-job skills

The Drupalオンラインテスト helps recruiters and hiring managers identify qualified candidates from a pool of resumes, and helps in taking objective hiring decisions. It reduces the administrative overhead of interviewing too many candidates and saves time by filtering out unqualified candidates at the first step of the hiring process.

The test screens for the following skills that hiring managers look for in candidates:

  • Drupal CMSを効率的に実装します
  • Drupalモジュールの開発と統合に熟練しています
  • Drupalテーマとフロントエンド開発に熟練しています
  • Drupalサイトの構成とカスタマイズの専門知識
  • Drupal Siteの管理とメンテナンスの習得
  • Drupalコンテンツ管理とワークフローに関する高度な知識
  • Drupalサイトの構築と建築における強力なスキル
  • Drupalデータベース管理と最適化に習熟しています
  • Drupal Security Best Practicesの詳細な理解
  • Drupal Performance Optimization Techniquesの優れた知識
  • PHP構文とプログラミング原則の専門知識
  • PHP OOPの概念を効果的に使用する機能
  • PHPセッションの管理の経験
  • PHPプログラミングとアプリケーション開発の習熟度
Reason #2

No trick questions

no trick questions

Traditional assessment tools use trick questions and puzzles for the screening, which creates a lot of frustration among candidates about having to go through irrelevant screening assessments.

View sample questions

The main reason we started Adaface is that traditional pre-employment assessment platforms are not a fair way for companies to evaluate candidates. At Adaface, our mission is to help companies find great candidates by assessing on-the-job skills required for a role.

Why we started Adaface
Try practice test
Reason #3

Non-googleable questions

We have a very high focus on the quality of questions that test for on-the-job skills. Every question is non-googleable and we have a very high bar for the level of subject matter experts we onboard to create these questions. We have crawlers to check if any of the questions are leaked online. If/ when a question gets leaked, we get an alert. We change the question for you & let you know.

How we design questions

これらは、10,000以上の質問のライブラリからのわずかなサンプルです。これに関する実際の質問 Drupalオンラインテスト グーグルできません.

🧐 Question

Medium

Access content
Routes
Controllers
Try practice test
Review the following Drupal code:
 image
 image
Pick the correct statements:

A: When /sample is accessed, access is allowed without checking for permissions and SampleController::content method is invoked
B: When /sample is accessed, ‘access content’ permission is checked on the accessing user and, if access is granted, SampleController::content method is invoked
C: When /sample is accessed, the page outputs ‘A’ on the page with title ‘B’
D: When /sample is accessed, the page outputs ‘B’ on the page with title ‘A’
E: When /sample is accessed, the page outputs ‘A’ on the page with no title
F: When /sample is accessed, the page outputs nothing on the page with title ‘B’

Medium

Insert Queries
Database API
Try practice test
Review the following Drupal code:
 image
Pick the correct statements:
A: Both the snippets create the queries to run but are not executed until $query→execute() is called
B: When Snippet 2 is run, the insert statements are executed one after the other always. Equivalent to calling →execute() two separate times for each item in $values.
C: When Snippet 2 is run, depending on the database, the insert statements will be executed together in a transaction
D: The return value of $result→execute will be the inserted record entry

Medium

Dynamic Function Calls
Arrays
Strings
Functions
Try practice test
Consider the following PHP pseudo code:
 image
The processArray function processes the $data array based on the transformation operations defined in the $operations array. The operations array dictates which transformation function to call for each sub-array key. What will be the output of the above code?
 image

Hard

Alter and Change
OOPs
Try practice test
What does the following code output?
 image

Hard

Exceptions
Exceptions
Try practice test
What does the following code output?
 image

Easy

PDO MySQL
Database Connections
Try practice test
Consider the following table data and PHP code. What is the result?
 image

Medium

Session Management and Object Serialization
Sessions
Serialization
Try practice test
Consider the following PHP script:
 image
Assuming you run the script twice in a row without clearing the session data, what will be the output on the second run?

Easy

Registration Queue
Logic
Queues
Solve
We want to register students for the next semester. All students have a receipt which shows the amount pending for the previous semester. A positive amount (or zero) represents that the student has paid extra fees, and a negative amount represents that they have pending fees to be paid. The students are in a queue for the registration. We want to arrange the students in a way such that the students who have a positive amount on the receipt get registered first as compared to the students who have a negative amount. We are given a queue in the form of an array containing the pending amount.
For example, if the initial queue is [20, 70, -40, 30, -10], then the final queue will be [20, 70, 30, -40, -10]. Note that the sequence of students should not be changed while arranging them unless required to meet the condition.
⚠️⚠️⚠️ Note:
- The first line of the input is the length of the array. The second line contains all the elements of the array.
- The input is already parsed into an array of "strings" and passed to a function. You will need to convert string to integer/number type inside the function.
- You need to "print" the final result (not return it) to pass the test cases.

For the example discussed above, the input will be:
5
20 70 -40 30 -10

Your code needs to print the following to the standard output:
20 70 30 -40 -10

Medium

Visitors Count
Strings
Logic
Solve
A manager hires a staff member to keep a record of the number of men, women, and children visiting the museum daily. The staff will note W if any women visit, M for men, and C for children. You need to write code that takes the string that represents the visits and prints the count of men, woman and children. The sequencing should be in decreasing order. 
Example:

Input:
WWMMWWCCC

Expected Output: 
4W3C2M

Explanation: 
‘W’ has the highest count, then ‘C’, then ‘M’. 
⚠️⚠️⚠️ Note:
- The input is already parsed and passed to a function.
- You need to "print" the final result (not return it) to pass the test cases.
- If the input is- “MMW”, then the expected output is "2M1W" since there is no ‘C’.
- If any of them have the same count, the output should follow this order - M, W, C.
🧐 Question🔧 Skill

Medium

Access content
Routes
Controllers

2 mins

Drupal
Try practice test

Medium

Insert Queries
Database API

2 mins

Drupal
Try practice test

Medium

Dynamic Function Calls
Arrays
Strings
Functions

2 mins

PHP
Try practice test

Hard

Alter and Change
OOPs

2 mins

PHP
Try practice test

Hard

Exceptions
Exceptions

2 mins

PHP
Try practice test

Easy

PDO MySQL
Database Connections

2 mins

PHP
Try practice test

Medium

Session Management and Object Serialization
Sessions
Serialization

2 mins

PHP
Try practice test

Easy

Registration Queue
Logic
Queues

30 mins

Coding
Solve

Medium

Visitors Count
Strings
Logic

30 mins

Coding
Solve
🧐 Question🔧 Skill💪 Difficulty⌛ Time
Access content
Routes
Controllers
Drupal
Medium2 mins
Try practice test
Insert Queries
Database API
Drupal
Medium2 mins
Try practice test
Dynamic Function Calls
Arrays
Strings
Functions
PHP
Medium2 mins
Try practice test
Alter and Change
OOPs
PHP
Hard2 mins
Try practice test
Exceptions
Exceptions
PHP
Hard2 mins
Try practice test
PDO MySQL
Database Connections
PHP
Easy2 mins
Try practice test
Session Management and Object Serialization
Sessions
Serialization
PHP
Medium2 mins
Try practice test
Registration Queue
Logic
Queues
Coding
Easy30 minsSolve
Visitors Count
Strings
Logic
Coding
Medium30 minsSolve
Reason #4

1200+ customers in 75 countries

customers in 75 countries
Brandon

Adaface を使用することで、最初の選考プロセスを 75% 以上最適化することができ、採用担当マネージャーと人材獲得チームの両方にとって貴重な時間を同様に解放することができました。


Brandon Lee, 人々の責任者, Love, Bonito

Try practice test
Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment Drupalオンラインテスト in your hiring process is that it is an elimination tool, not a selection tool. In other words: you want to use the test to eliminate the candidates who do poorly on the test, not to select the candidates who come out at the top. While they are super valuable, pre-employment tests do not paint the entire picture of a candidate’s abilities, knowledge, and motivations. Multiple easy questions are more predictive of a candidate's ability than fewer hard questions. Harder questions are often "trick" based questions, which do not provide any meaningful signal about the candidate's skillset.

Science behind Adaface tests
Reason #6

1 click candidate invites

Email invites: You can send candidates an email invite to the Drupalオンラインテスト from your dashboard by entering their email address.

Public link: You can create a public link for each test that you can share with candidates.

API or integrations: You can invite candidates directly from your ATS by using our pre-built integrations with popular ATS systems or building a custom integration with your in-house ATS.

invite candidates
Reason #7

Detailed scorecards & benchmarks

サンプルスコアカードを表示します
Try practice test
Reason #8

High completion rate

Adaface tests are conversational, low-stress, and take just 25-40 mins to complete.

This is why Adaface has the highest test-completion rate (86%), which is more than 2x better than traditional assessments.

test completion rate
Reason #9

Advanced Proctoring


Learn more

About the Drupalオンラインテスト

Why you should use Drupalオンラインテスト?

The Drupalオンラインテスト makes use of scenario-based questions to test for on-the-job skills as opposed to theoretical knowledge, ensuring that candidates who do well on this screening test have the relavant skills. The questions are designed to covered following on-the-job aspects:

  • ウェブサイトの開発と管理にDrupal CMSを使用する能力
  • Drupalモジュールとその統合に関する知識
  • Drupalテーマの経験とウェブサイトのレイアウトのカスタマイズ
  • Drupalサイトの構成と管理の理解
  • Drupalコンテンツ管理とデータの整理の習熟度
  • Drupalサイトの構築と機能的なWebサイトの作成のスキル
  • Drupalデータベース管理とデータ処理の専門知識
  • Drupal Security Best Practices and Measureの知識
  • 効率的なWebサイトのDrupalパフォーマンスの最適化の経験
  • 清潔で効率的なPHP構文を書く能力

Once the test is sent to a candidate, the candidate receives a link in email to take the test. For each candidate, you will receive a detailed report with skills breakdown and benchmarks to shortlist the top candidates from your pool.

What topics are covered in the Drupalオンラインテスト?

  • Drupal CMS

    Drupal CMSは、ユーザーがデジタルコンテンツを作成、整理、管理できるコンテンツ管理システムです。ユーザー認証、コンテンツの公開、コンテンツワークフロー管理などの機能を提供する堅牢でスケーラブルなWebサイトの構築に広く使用されています。追加の機能と機能を追加することにより、CMS。サードパーティシステムとの統合、高度なコンテンツタイプ、ユーザー管理の拡張など、カスタム機能を提供できるようにインストールおよび有効にすることができます。 Drupal Webサイトのレイアウト。テンプレートの作成とカスタマイズ、ユーザーインターフェイスのスタイリング、ウェブサイトの訪問者に一貫した視覚的に魅力的なエクスペリエンスを確保するためのレスポンシブデザインテクニックの実装が含まれます。サイト設定、コンテンツタイプ、分類法、ユーザーの役割、許可、その他のサイト全体の構成など、Drupal Webサイトのさまざまな側面の設定と構成のプロセス。管理者は、ウェブサイトを特定の要件に合わせて調整し、最適なパフォーマンスとセキュリティを確保することができます。 。これには、ユーザー管理、コンテンツモデレート、サイトバックアップ、セキュリティの更新、パフォーマンス監視などのタスクが含まれます。効果的なサイト管理は、機能的で安全なDrupal Webサイトを維持するために重要です。 Drupal Webサイト内のコンテンツ。コンテンツの著者と編集者がウェブサイトのコンテンツを管理するためのユーザーフレンドリーなインターフェイスを提供し、訪問者に一貫した構造化された情報のプレゼンテーションを確保します。 Drupalの管理インターフェイスを使用して、重要なコーディングを必要とせずにWebサイトを構築および構成します。コンテンツタイプの作成、ビューとブロックの構成、メニューとナビゲーションの設定、サイトレイアウトの管理などのタスクが含まれます。強力なサイト構築スキルは、複雑なDrupal Webサイトの作成と維持に不可欠です。

  • Drupalデータベース管理

    Drupalデータベース管理には、Webサイトのコンテンツやその他のデータを保存するデータベースの管理と最適化が必要です。これには、データベースのバックアップと復元、パフォーマンスチューニング、クエリの最適化、データの整合性管理などのタスクが含まれます。最適なWeb​​サイトのパフォーマンスとスケーラビリティを確保するには、効率的なデータベース管理が重要です。 。これには、安全なユーザー認証の確保、アクセス制御とアクセス許可の実装、セキュリティパッチと更新の適用、潜在的な脆弱性の監視が含まれます。機密データを保護し、ウェブサイトの整合性を維持するためには、強力なDrupalセキュリティスキルが必要です。 Drupal Webサイト。これには、キャッシュ管理、コード最適化、画像最適化、データベースチューニング、サーバー構成などの手法が含まれます。効果的なパフォーマンス最適化スキルは、特にトラフィックの高いウェブサイトで高速でスムーズなユーザーエクスペリエンスを提供するために不可欠です。 PHPプログラミング言語の書き込み。 PHPコードのステートメント、変数、関数、およびその他のコンポーネントを構成およびフォーマットする方法を定義します。 PHP構文を理解することは、クリーンで読み取り可能な、エラーのないPHPコードを書き込むために重要です。コードを整理および構成するためのオブジェクト、クラス、および継承の。モジュラーと再利用可能なコードを可能にし、コードの効率、保守性、およびスケーラビリティを促進します。 PHP OOPの習熟度は、PHPに複雑で堅牢なアプリケーションを構築するために重要です。ログインステータス、ショッピングカートのコンテンツ、ユーザーの好みなど、ユーザー固有の情報のストレージと取得を可能にします。 PHPセッションを理解することは、インタラクティブでパーソナライズされたWebアプリケーションの作成に不可欠です。

  • PHPプログラミング

    PHPプログラミングには、PHPプログラミング言語でコードを作成して動的なWebアプリケーションを構築します。フォームの提出、データベースとの対話、計算の実行、文字列と配列の操作、制御フロー構造の実装などのタスクが含まれます。 PHPプログラミングの習熟度は、機能が豊富で機能的なWebアプリケーションを開発するために不可欠です。

  • Full list of covered topics

    The actual topics of the questions in the final test will depend on your job description and requirements. However, here's a list of topics you can expect the questions for Drupalオンラインテスト to be based on.

    Drupal CMS
    Drupalモジュール
    Drupalテーマ
    Drupalサイト構成
    Drupal Site Administration
    Drupalコンテンツ管理
    Drupal Site Building
    Drupalデータベース管理
    Drupal Security
    Drupal Performanceの最適化
    PHP構文
    php ooop
    PHPセッション
    PHPプログラミング
    Drupalフック
    Drupal Forms
    Drupalテーマフック
    Drupalテーマテンプレート
    Drupalメニューシステム
    Drupal Views
    Drupalブロック
    DRUPAL分類法
    Drupalユーザー管理
    Drupal Pormessions
    Drupalキャッシング
    Drupalの更新とパッチング
    Drupal Multisiteセットアップ
    Drupalモバイル応答性
    Drupal SEOベストプラクティス
    Drupalの展開
    Drupalバージョンコントロール
    Drupalコンテンツタイプ
    Drupalノードアクセス制御
    Drupalサイトのパフォーマンス監視
    Drupalテーマのカスタマイズ
    Drupalモジュール開発
    Drupalカスタムフィールド
    Drupalワークフロー
    Drupal Siteの移行
    Drupal Restful API
    Drupal Searchモジュール
    Drupal Cronの仕事
    Drupalは検証を形成します
    Drupal Ajax
    Drupalテーマのプリプロース機能
    Drupalブロックの可視性設定
    Drupal Securityの脆弱性
    Drupal Performance Tuning
    PHP変数
    PHPデータ型
    PHP関数
    PHPアレイ
    PHP条件ステートメント
    PHPループ
    PHPファイル処理
    PHPエラー処理
    PHPデータベース接続
    PHP Cookieとセッション
    PHPファイルのアップロード
    PHP正規表現
    PHPの日付と時刻関数
    PHPオブジェクト指向プログラミング
    PHP例外処理
Try practice test

What roles can I use the Drupalオンラインテスト for?

  • Drupal開発者
  • Drupal管理者
  • Drupal Consultant
  • Drupalサポートスペシャリスト

How is the Drupalオンラインテスト customized for senior candidates?

For intermediate/ experienced candidates, we customize the assessment questions to include advanced topics and increase the difficulty level of the questions. This might include adding questions on topics like

  • PHPを使用したオブジェクト指向プログラミング(OOP)の習熟度
  • PHPセッションとセッション管理の理解
  • PHPプログラミングの概念とテクニックの知識
  • PHPをDrupal CMSと統合するスキル
  • Drupal固有のPHP関数とAPIの経験
  • PHPコードのデバッグとトラブルシューティングの習熟度
  • DrupalでのPHPフレームワークとその使用の理解
  • RESTFUL APIの知識とPHPとの統合
  • PHPでWebサービスの作成と消費の経験
  • パフォーマンスを向上させるために、PHPコードを最適化するスキル

The coding question for experienced candidates will be of a higher difficulty level to evaluate more hands-on experience.

Singapore government logo

採用担当者は、パネル面接中に尋ねる専門的な質問を通じて、どの候補者がより良いスコアを持っているかを判断し、スコアがそれほど高くない候補者と区別できると感じました。彼らです 非常に満足 Adaface のスクリーニングで最終候補者リストに選ばれた候補者の質を重視します。


85%
スクリーニング時間の短縮

Drupalオンラインテスト よくある質問

複数のスキルを1つのカスタム評価に組み合わせることはできますか?

そのとおり。カスタム評価は、職務内容に基づいて設定され、指定したすべての必須スキルに関する質問が含まれます。

アンチチートまたは監督の機能はありますか?

次のアンチチート機能があります。

  • グーグル不可能な質問
  • IP監督
  • Webの提案
  • ウェブカメラの監督
  • 盗作の検出
  • 安全なブラウザ

[プロクチャリング機能](https://www.adaface.com/proctoring)の詳細をご覧ください。

テストスコアを解釈するにはどうすればよいですか?

留意すべき主なことは、評価が選択ツールではなく排除ツールであることです。スキル評価が最適化され、技術的にその役割の資格がない候補者を排除するのに役立ちます。これは、役割の最良の候補者を見つけるのに役立つために最適化されていません。したがって、評価を使用する理想的な方法は、しきい値スコア(通常は55%、ベンチマークを支援します)を決定し、インタビューの次のラウンドのしきい値を超えてスコアを上回るすべての候補者を招待することです。

このテストを使用できますか?

各ADAFACE評価は、職務記述書/理想的な候補者のペルソナにカスタマイズされます(当社の主題の専門家は、10000以上の質問のライブラリからあなたの評価に適切な質問を選択します)。この評価は、あらゆる経験レベルでカスタマイズできます。

すべての候補者は同じ質問を受け取りますか?

私は候補者です。練習テストを試すことはできますか?

いいえ。残念ながら、現時点では練習テストをサポートしていません。ただし、[サンプルの質問](https://www.adaface.com/questions)を使用するには、練習できます。

このテストを使用するコストはいくらですか?

無料トライアルを受けることはできますか?

私はちょうど有料プランに移りました。カスタム評価をリクエストするにはどうすればよいですか?

customers across world
Join 1200+ companies in 75+ countries.
今日、最も候補者のフレンドリーなスキル評価ツールをお試しください。
g2 badges
Ready to use the Adaface Drupalオンラインテスト?
Ready to use the Adaface Drupalオンラインテスト?
私たちとしゃべる
ada
Ada
● Online
✖️