Search test library by skills or roles
⌘ K

About the test:

PHP,Drupal&SQL测试使用基于方案的MCQ来评估候选者在PHP编程语言,Drupal Content Management System和SQL数据库方面的熟练程度。该测试评估了候选人对模块开发,主题,数据库交互,Drupal架构,SQL查询和数据库设计原理等主题的理解。评估了他们使用这些技术来开发Drupal的自定义模块,主题和配置的能力,以及他们熟练编写有效有效的SQL查询,以进行数据操作和检索。

Covered skills:

  • PHP语法基础知识
  • php糟糕
  • SQL加入和索引
  • Drupal路线和控制器
  • PHP数据结构
  • SQL CRUD操作
  • Drupal模块和主题
  • PHP编程

Try practice test
9 reasons why
9 reasons why

Adaface PHP, Drupal & SQL Test is the most accurate way to shortlist PHP开发人员s



Reason #1

Tests for on-the-job skills

The PHP, Drupal & SQL Online Test 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:

  • 有效处理PHP语法基础知识
  • 对PHP数据结构的强烈了解
  • 精通PHP OOPS概念
  • SQL CRUD操作方面的专业知识
  • SQL加入和索引的深刻了解
  • 开发Drupal模块和主题的能力
  • 熟练的迪鲁普尔路线和控制器
  • 精通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多个问题的一个小样本。关于此的实际问题 PHP,Drupal和SQL测试 将是不可行的.

🧐 Question

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?

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

Multi Select
JOIN
GROUP BY
Try practice test
Consider the following SQL table:
 image
How many rows does the following SQL query return?
 image

Medium

nth highest sales
Nested queries
User Defined Functions
Try practice test
Consider the following SQL table:
 image
Which of the following SQL commands will find the ‘nth highest Sales’ if it exists (returns null otherwise)?
 image

Medium

Select & IN
Nested queries
Try practice test
Consider the following SQL table:
 image
Which of the following SQL queries would return the year when neither a football or cricket winner was chosen?
 image

Medium

Sorting Ubers
Nested queries
Join
Comparison operators
Try practice test
Consider the following SQL table:
 image
What will be the first two tuples resulting from the following SQL command?
 image

Hard

With, AVG & SUM
MAX() MIN()
Aggregate functions
Try practice test
Consider the following SQL table:
 image
How many tuples does the following query return?
 image

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

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

Medium

Access content
Routes
Controllers

2 mins

Drupal
Try practice test

Medium

Insert Queries
Database API

2 mins

Drupal
Try practice test

Medium

Multi Select
JOIN
GROUP BY

2 mins

SQL
Try practice test

Medium

nth highest sales
Nested queries
User Defined Functions

3 mins

SQL
Try practice test

Medium

Select & IN
Nested queries

3 mins

SQL
Try practice test

Medium

Sorting Ubers
Nested queries
Join
Comparison operators

3 mins

SQL
Try practice test

Hard

With, AVG & SUM
MAX() MIN()
Aggregate functions

2 mins

SQL
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
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
Access content
Routes
Controllers
Drupal
Medium2 mins
Try practice test
Insert Queries
Database API
Drupal
Medium2 mins
Try practice test
Multi Select
JOIN
GROUP BY
SQL
Medium2 mins
Try practice test
nth highest sales
Nested queries
User Defined Functions
SQL
Medium3 mins
Try practice test
Select & IN
Nested queries
SQL
Medium3 mins
Try practice test
Sorting Ubers
Nested queries
Join
Comparison operators
SQL
Medium3 mins
Try practice test
With, AVG & SUM
MAX() MIN()
Aggregate functions
SQL
Hard2 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 PHP,Drupal和SQL测试 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 PHP,Drupal和SQL测试 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 PHP, Drupal & SQL Assessment Test

Why you should use Pre-employment PHP, Drupal & SQL Online Test?

The PHP,Drupal和SQL测试 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:

  • 了解PHP语法基础知识
  • 实施PHP数据结构
  • 应用面向对象的编程原理
  • 执行SQL CRUD操作
  • 利用SQL加入和索引
  • 开发Drupal模块和主题
  • 创建Drupal路线和控制器
  • 展示PHP编程技能
  • 应用高级PHP概念,例如关闭和发电机
  • 设计可扩展的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 PHP, Drupal & SQL Online Test?

  • PHP数据结构

    此技能评估了候选人对各种的熟悉程度PHP中的数据结构,例如数组,字符串和对象。它包括了解如何在这些结构中操纵数据,访问元素,执行分类和过滤等操作,并有效地实现算法。此技能评估为候选人提供了与不同类型的数据及其对PHP内置数据结构的了解的能力。

  • PHP OOPS

    此技能衡量了候选人对候选人对PHP中面向对象的编程概念。它包括阶级,对象,继承,多态性和封装的知识。评估此技能有助于评估候选人使用面向对象的原理设计和实施模块化,可重复使用和可维护的代码的能力。

  • SQL CRUD Operations

    此技能评估了候选人的表现能力使用SQL查询的CRUD(创建,读,更新,删除)操作。它包括有关SQL语法的知识,了解如何与数据库进行交互以及编写用于创建,检索,更新和删除记录的查询。评估此技能有助于确定候选人在关系数据库管理系统中使用数据的能力。

  • SQL JON和INDEXES

    此技能衡量了候选人对SQL JOIN和索引的理解。它包括内部,外部和交叉连接等不同类型的连接的知识,以及制定和执行复杂联接查询的能力。此外,它涉及了解索引的概念及其在优化数据库性能方面的重要性。评估此技能有助于评估候选人在数据库应用程序中纳入有效的查询和数据检索技术的能力。

  • drupal模块和主题

    此技能评估了候选人对创建和自定义模块的熟悉和自定义模块的熟悉程度Drupal内容管理系统中的主题。它包括有关Drupal的架构,钩子,模块开发和主题构建的知识。评估这项技能有助于确定候选人扩展Drupal功能并使用自定义模块和主题创建视觉吸引力和用户友好的网站的能力。

  • Drupal路线和控制器

    此技能衡量候选人在Drupal框架中定义路线和实现控制器的能力。它包括Drupal的路由系统,路由配置和实现控制器操作的知识。评估此技能有助于评估候选人在Drupal中有效地创建和管理URL/路线并有效处理用户请求的能力。

  • PHP编程

    此技能评估了候选人在PHP计划中的整体水平。它包括上述所有技能的组合 - 语法,数据结构,面向对象的编程和数据库交互。评估这项技能提供了对候选人的PHP编程能力及其在基于PHP的项目上有效工作的潜力的总体理解。

  • 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 PHP,Drupal和SQL测试 to be based on.

    PHP变量
    PHP操作员
    PHP控制结构
    PHP功能
    PHP数组
    PHP字符串
    PHP循环
    PHP条件
    PHP类
    PHP继承
    PHP抽象
    PHP封装
    PHP多态性
    SQL选择查询
    SQL插入查询
    SQL更新查询
    SQL删除查询
    SQL加入
    SQL索引
    Drupal钩
    Drupal主题
    Drupal内容类型
    Drupal视图
    Drupal块
    Drupal实体
    Drupal形式
    Drupal Field API
    Drupal安全
    Drupal路由
    Drupal控制器
    面向对象的PHP
    PHP中的例外处理
    使用PHP中的数据库
    PHP文件处理
    PHP错误处理
    PHP正则表达式
    PHP REST API
    PHP会话处理
    php cookie处理
    PHP身份验证
    PHP加密
    PHP XML解析
    PHP JSON解析
    PHP日期和时间功能
    PHP图像操纵
    PHP单元测试
    PHP调试
    PHP性能优化
    PHP的安全最佳实践
    了解MVC架构
    软件开发生命周期
    git基础
    git分支
    git合并
    git重新审视
    HTML基础知识
    CSS基础知识
    JavaScript基础知识
    jQuery基础知识
    Ajax基本面
    响应式网页设计
    跨浏览器兼容性
    代码文档
Try practice test

What roles can I use the PHP, Drupal & SQL Online Test for?

  • PHP开发人员
  • Drupal开发人员
  • 完整的堆栈开发人员

How is the PHP, Drupal & SQL Online Test 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开发中利用设计模式
  • 优化SQL查询以进行性能
  • 实施数据库标准化技术
  • 利用SQL中的交易管理
  • 通过权限和角色确保Drupal应用
  • 在Drupal中实施多语言支持
  • 利用PHP中的缓存机制
  • 在Drupal中开发静止的API
  • 编写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%
减少筛查时间

PHP, Drupal & SQL Hiring Test 常见问题解答

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

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

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

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

  • 不可解决的问题
  • 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 PHP,Drupal和SQL测试?
Ready to use the Adaface PHP,Drupal和SQL测试?
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
✖️