Search test library by skills or roles
⌘ K

About the test:

Drupal在线测试使用基于方案的MCQ来评估候选人对Drupal的了解,包括站点构建,主题,模块开发和管理。该测试旨在评估候选人有效地使用Drupal并设计可扩展和可维护的Web应用程序的能力。该测试包括一个编码问题,以评估PHP的动手编程技能。

Covered skills:

  • Drupal CMS
  • Drupal主题
  • Drupal站点管理
  • Drupal站点建筑
  • Drupal安全
  • PHP语法
  • PHP会议
  • Drupal模块
  • Drupal站点配置
  • Drupal内容管理
  • Drupal数据库管理
  • Drupal性能优化
  • php oop
  • PHP编程

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网站管理和维护
  • Drupal内容管理和工作流的高级知识
  • Drupal网站建设和建筑的强大技能
  • 精通Drupal数据库管理和优化
  • 深入了解Drupal安全最佳实践
  • 对Drupal性能优化技术的出色知识
  • 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
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
Solve
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
Solve
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
Solve
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
Solve
What does the following code output?
 image

Hard

Exceptions
Exceptions
Solve
What does the following code output?
 image

Easy

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

Medium

Session Management and Object Serialization
Sessions
Serialization
Solve
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
Solve

Medium

Insert Queries
Database API

2 mins

Drupal
Solve

Medium

Dynamic Function Calls
Arrays
Strings
Functions

2 mins

PHP
Solve

Hard

Alter and Change
OOPs

2 mins

PHP
Solve

Hard

Exceptions
Exceptions

2 mins

PHP
Solve

Easy

PDO MySQL
Database Connections

2 mins

PHP
Solve

Medium

Session Management and Object Serialization
Sessions
Serialization

2 mins

PHP
Solve

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
Solve
Insert Queries
Database API
Drupal
Medium2 mins
Solve
Dynamic Function Calls
Arrays
Strings
Functions
PHP
Medium2 mins
Solve
Alter and Change
OOPs
PHP
Hard2 mins
Solve
Exceptions
Exceptions
PHP
Hard2 mins
Solve
PDO MySQL
Database Connections
PHP
Easy2 mins
Solve
Session Management and Object Serialization
Sessions
Serialization
PHP
Medium2 mins
Solve
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

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

查看样本记分卡
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网站建设和创建功能网站的技能
  • Drupal数据库管理和数据处理方面的专业知识
  • 了解Drupal安全的最佳实践和措施
  • 在高效网站上具有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模块

    drupal模块扩展了Drupal的功能CMS通过添加其他功能和功能。可以安装并启用它们,以提供自定义功能,例如与第三方系统,高级内容类型和增强的用户管理集成。

  • drupal主题

    drupal主题涉及设计和设计Drupal网站的布局。它包括创建和自定义模板,对用户界面进行造型以及实施响应式设计技术,以确保网站访问者的一致和视觉上吸引人的体验。

  • drupal网站配置

    drupal网站配置参考到设置和配置Drupal网站的各个方面的过程,包括站点设置,内容类型,分类法,用户角色和权限以及其他网站范围的配置。它允许管理员根据特定要求定制网站并确保最佳性能和安全性。

  • Drupal网站管理

    Drupal网站管理涉及管理Drupal网站的日常操作。这包括诸如用户管理,内容审核,站点备份,安全更新和性能监视之类的任务。有效的网站管理对于维持功能良好且安全的Drupal网站至关重要。

  • Drupal内容管理

    Drupal内容管理是指创建,编辑,组织和发布数字的过程Drupal网站中的内容。它为内容作者和编辑人员提供了一个用户友好的接口,以管理网站的内容,确保向访问者提供一致且结构化的信息。

  • drupal站点构建

    drupal网站涉及涉及使用Drupal的管理接口来构建和配置网站,而无需进行大量编码。它包括创建内容类型,配置视图和块,设置菜单和导航以及管理站点布局等任务。强大的站点构建技能对于创建和维护复杂的Drupal网站至关重要。

  • Drupal数据库管理

    Drupal数据库管理需要管理和优化存储网站内容和其他数据的数据库。这包括诸如数据库备份和还原,性能调整,查询优化和数据完整性管理等任务。有效的数据库管理对于确保最佳网站性能和可扩展性至关重要。

  • Drupal Security

    Drupal Security涉及实施措施来保护Drupal网站免受未经授权的访问,数据泄露和其他安全性威胁。这包括确保安全的用户身份验证,实施访问控件和权限,应用安全补丁和更新以及监视潜在漏洞。强大的Drupal安全技能对于维护敏感数据和维持网站的完整性是必要的。

  • Drupal绩效优化

    Drupal绩效优化侧重于提高速度,响应能力和效率Drupal网站。它涉及诸如缓存管理,代码优化,图像优化,数据库调整和服务器配置之类的技术。有效的性能优化技能对于提供快速,流畅的用户体验至关重要,尤其是对于高流量的网站。

  • PHP语法</h4> <pp php语法是指用于编写PHP编程语言。它定义了应如何对PHP代码的语句,变量,功能和其他组件进行构造和格式。了解PHP语法对于编写清洁,可读和无错误的PHP代码很重要。</p> <h4> php oop

    php oop(面向对象的编程)是一种编程范式,是一种强调使用的编程范式对象,类和继承的组织代码和结构代码。它允许模块化和可重复使用的代码,促进代码效率,可维护性和可扩展性。 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站点管理
    Drupal内容管理
    Drupal站点建筑
    Drupal数据库管理
    Drupal安全
    Drupal性能优化
    PHP语法
    php oop
    PHP会议
    PHP编程
    Drupal钩
    Drupal形式
    Drupal主题钩
    Drupal主题模板
    Drupal菜单系统
    Drupal视图
    Drupal块
    Drupal分类学
    Drupal用户管理
    Drupal许可
    Drupal缓存
    Drupal更新和修补
    Drupal多站点设置
    Drupal移动响应能力
    Drupal SEO最佳实践
    Drupal部署
    Drupal版本控制
    Drupal内容类型
    Drupal节点访问控制
    Drupal站点性能监控
    Drupal主题自定义
    Drupal模块开发
    Drupal自定义字段
    Drupal工作流程
    Drupal站点迁移
    Drupal Restful API
    Drupal搜索模块
    Drupal Cron Jobs
    Drupal形式验证
    Drupal Ajax
    Drupal主题预处理功能
    Drupal块可见性设置
    Drupal安全漏洞
    Drupal性能调整
    PHP变量
    PHP数据类型
    PHP功能
    PHP数组
    PHP条件语句
    PHP循环
    PHP文件处理
    PHP错误处理
    PHP数据库连接
    PHP饼干和会议
    PHP文件上传
    PHP正则表达式
    PHP日期和时间功能
    面向对象的编程
    PHP例外处理

What roles can I use the Drupal在线测试 for?

  • Drupal开发人员
  • Drupal管理员
  • Drupal顾问
  • 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

  • 熟练掌握面向对象的编程(OOP)
  • 了解PHP会议和会话管理
  • 了解PHP编程概念和技术的知识
  • 将PHP与Drupal CMS集成的技能
  • 具有特异性PHP功能和API的经验
  • 精通调试和故障排除PHP代码
  • 了解PHP框架及其在Drupal中的使用
  • 对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在线测试 常见问题解答

我可以将多个技能结合在一起,为一个自定义评估吗?

是的,一点没错。自定义评估是根据您的职位描述进行的,并将包括有关您指定的所有必备技能的问题。

您是否有任何反交换或策略功能?

我们具有以下反交易功能:

  • 不可解决的问题
  • IP策略
  • Web Protoring
  • 网络摄像头Proctoring
  • 窃检测
  • 安全浏览器

阅读有关[Proctoring功能](https://www.adaface.com/proctoring)的更多信息。

如何解释考试成绩?

要记住的主要问题是评估是消除工具,而不是选择工具。优化了技能评估,以帮助您消除在技术上没有资格担任该角色的候选人,它没有进行优化以帮助您找到该角色的最佳候选人。因此,使用评估的理想方法是确定阈值分数(通常为55%,我们为您提供基准测试),并邀请所有在下一轮面试中得分高于门槛的候选人。

我可以使用该测试的经验水平?

每个ADAFACE评估都是为您的职位描述/理想候选角色定制的(我们的主题专家将从我们的10000多个问题的图书馆中选择正确的问题)。可以为任何经验级别定制此评估。

每个候选人都会得到同样的问题吗?

是的,这使您比较候选人变得容易得多。 MCQ问题的选项和问题顺序是随机的。我们有[抗欺骗/策略](https://www.adaface.com/proctoring)功能。在我们的企业计划中,我们还可以选择使用类似难度级别的问题创建多个版本的相同评估。

我是候选人。我可以尝试练习测试吗?

不,不幸的是,我们目前不支持实践测试。但是,您可以使用我们的[示例问题](https://www.adaface.com/questions)进行练习。

使用此测试的成本是多少?

您可以查看我们的[定价计划](https://www.adaface.com/pricing/)。

我可以免费试用吗?

我刚刚搬到了一个付费计划。我如何要求自定义评估?

customers across world
Join 1200+ companies in 75+ countries.
立即尝试最候选的友好技能评估工具。
g2 badges
Ready to use the Adaface Drupal在线测试?
Ready to use the Adaface Drupal在线测试?
logo
40 min tests.
No trick questions.
Accurate shortlisting.
术语 隐私 信任指南

🌎选择您的语言

English Norsk Dansk Deutsche Nederlands Svenska Français Español Chinese (简体中文) Italiano Japanese (日本語) Polskie Português Russian (русский)
ada
Ada
● Online
Previous
Score: NA
Next
✖️