Search test library by skills or roles
⌘ K

Drupal Online Test

The Drupal Online test uses scenario-based MCQs to evaluate candidates on their knowledge of Drupal, including site building, theming, module development, and administration. The test aims to evaluate a candidate's ability to work with Drupal effectively and design and develop scalable and maintainable web applications. The test includes a coding question to evaluate hands-on PHP programming skills.

Get started for free
Preview questions

Screen candidates with a 40 mins test

Test duration:  40 mins
Difficulty level:  Moderate
Availability:  Ready to use
Questions:
  • 5 Drupal MCQs
  • 5 PHP MCQs
  • 1 PHP Coding Question
Covered skills:
Drupal CMS
Drupal modules
Drupal theming
Drupal site configuration
Drupal site administration
Drupal content management
Drupal site building
Drupal database management
Drupal security
Drupal performance optimization
PHP Syntax
PHP OOP
PHP Sessions
PHP Programming
Get started for free
Preview questions

Use Adaface tests trusted by recruitment teams globally

Adaface is used by 1500+ businesses in 80 countries.

Adaface skill assessments measure on-the-job skills of candidates, providing employers with an accurate tool for screening potential hires.

Amazon Morgan Stanley Vodafone United Nations HCL PayPal Bosch WeWork Optimum Solutions Deloitte NCS Sokrati J&T Express Capegemini

Use the Drupal Test to shortlist qualified candidates

The Drupal 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:

  • Efficiently implementing Drupal CMS
  • Proficient in Drupal modules development and integration
  • Skilled in Drupal theming and front-end development
  • Expertise in Drupal site configuration and customization
  • Mastery in Drupal site administration and maintenance
  • Advanced knowledge of Drupal content management and workflow
  • Strong skills in Drupal site building and architecture
  • Proficient in Drupal database management and optimization
  • In-depth understanding of Drupal security best practices
  • Excellent knowledge of Drupal performance optimization techniques
  • Expertise in PHP syntax and programming principles
  • Ability to use PHP OOP concepts effectively
  • Experience in managing PHP sessions
  • Proficiency in PHP programming and application development
Get started for free
Preview questions

Screen candidates with the highest quality 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

These are just a small sample from our library of 15,000+ questions. The actual questions on this Drupal Online Test will be non-googleable.

🧐 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

Test candidates on core Drupal Hiring Test topics

Drupal CMS: Drupal CMS is a content management system that allows users to create, organize, and manage digital content. It is widely used for building robust and scalable websites, providing features such as user authentication, content publishing, and content workflow management.

Drupal modules: Drupal modules extend the functionality of the Drupal CMS by adding additional features and capabilities. They can be installed and enabled to provide custom functionality such as integrations with third-party systems, advanced content types, and enhanced user management.

Drupal theming: Drupal theming involves the design and layout of a Drupal website. It includes creating and customizing templates, styling the user interface, and implementing responsive design techniques to ensure a consistent and visually appealing experience for website visitors.

Drupal site configuration: Drupal site configuration refers to the process of setting up and configuring various aspects of a Drupal website, including site settings, content types, taxonomies, user roles and permissions, and other site-wide configurations. It allows administrators to tailor the website to specific requirements and ensure optimal performance and security.

Drupal site administration: Drupal site administration involves managing the day-to-day operations of a Drupal website. This includes tasks such as user management, content moderation, site backups, security updates, and performance monitoring. Effective site administration is crucial for maintaining a well-functioning and secure Drupal website.

Drupal content management: Drupal content management refers to the process of creating, editing, organizing, and publishing digital content within a Drupal website. It provides a user-friendly interface for content authors and editors to manage the website's content, ensuring a consistent and structured presentation of information to visitors.

Drupal site building: Drupal site building involves using Drupal's administrative interface to construct and configure a website without the need for significant coding. It includes tasks such as creating content types, configuring views and blocks, setting up menus and navigation, and managing site layouts. Strong site building skills are essential for creating and maintaining complex Drupal websites.

Drupal database management: Drupal database management entails managing and optimizing the database that stores the website's content and other data. This includes tasks such as database backup and restore, performance tuning, query optimization, and data integrity management. Efficient database management is crucial for ensuring optimal website performance and scalability.

Drupal security: Drupal security involves implementing measures to protect a Drupal website from unauthorized access, data breaches, and other security threats. This includes ensuring secure user authentication, implementing access controls and permissions, applying security patches and updates, and monitoring for potential vulnerabilities. Strong Drupal security skills are necessary for safeguarding sensitive data and maintaining the integrity of a website.

Drupal performance optimization: Drupal performance optimization focuses on improving the speed, responsiveness, and efficiency of a Drupal website. It involves techniques such as cache management, code optimization, image optimization, database tuning, and server configuration. Effective performance optimization skills are essential for delivering a fast and smooth user experience, especially for high-traffic websites.

PHP Syntax: PHP Syntax refers to the set of rules and conventions used for writing PHP programming language. It defines how statements, variables, functions, and other components of PHP code should be structured and formatted. Understanding PHP Syntax is important for writing clean, readable, and error-free PHP code.

PHP OOP: PHP OOP (Object-Oriented Programming) is a programming paradigm that emphasizes the use of objects, classes, and inheritance to organize and structure code. It allows for modular and reusable code, promoting code efficiency, maintainability, and scalability. Proficiency in PHP OOP is crucial for building complex and robust applications in PHP.

PHP Sessions: PHP Sessions are a mechanism for maintaining state and persisting data across multiple web requests. They allow for the storage and retrieval of user-specific information, such as login status, shopping cart contents, or user preferences. Understanding PHP Sessions is vital for creating interactive and personalized web applications.

PHP Programming: PHP Programming involves writing code in the PHP programming language to build dynamic web applications. It includes tasks such as handling form submissions, interacting with databases, performing calculations, manipulating strings and arrays, and implementing control flow structures. Proficiency in PHP Programming is essential for developing feature-rich and functional web applications.

Get started for free
Preview questions

Make informed decisions with actionable reports and benchmarks

View sample scorecard

Screen candidates in 3 easy steps

Pick a test from over 500+ tests

The Adaface test library features 500+ tests to enable you to test candidates on all popular skills- everything from programming languages, software frameworks, devops, logical reasoning, abstract reasoning, critical thinking, fluid intelligence, content marketing, talent acquisition, customer service, accounting, product management, sales and more.

Invite your candidates with 2-clicks

Make informed hiring decisions

Get started for free
Preview questions

Try the most advanced candidate assessment platform

ChatGPT Protection

Non-googleable Questions

Web Proctoring

IP Proctoring

Webcam Proctoring

MCQ Questions

Coding Questions

Typing Questions

Personality Questions

Custom Questions

Ready-to-use Tests

Custom Tests

Custom Branding

Bulk Invites

Public Links

ATS Integrations

Multiple Question Sets

Custom API integrations

Role-based Access

Priority Support

GDPR Compliance


Pick a plan based on your hiring needs

The most advanced candidate screening platform.
14-day free trial. No credit card required.

From
$15
per month (paid annually)
love bonito

With Adaface, we were able to optimise our initial screening process by upwards of 75%, freeing up precious time for both hiring managers and our talent acquisition team alike!

Brandon Lee, Head of People, Love, Bonito

Brandon
love bonito

It's very easy to share assessments with candidates and for candidates to use. We get good feedback from candidates about completing the tests. Adaface are very responsive and friendly to deal with.

Kirsty Wood, Human Resources, WillyWeather

Brandon
love bonito

We were able to close 106 positions in a record time of 45 days! Adaface enables us to conduct aptitude and psychometric assessments seamlessly. My hiring managers have never been happier with the quality of candidates shortlisted.

Amit Kataria, CHRO, Hanu

Brandon
love bonito

We evaluated several of their competitors and found Adaface to be the most compelling. Great library of questions that are designed to test for fit rather than memorization of algorithms.

Swayam Narain, CTO, Affable

Brandon

Have questions about the Drupal Hiring Test?

How does pricing work?

You can check out our pricing plans.

Can I customize the test?

Yes, absolutely. Custom assessments are set up within 48 hours based on your job description, and will include questions on all must-have skills you specify. Here's a quick guide on how you can request a custom test. You can also customize a test by uploading your own questions.

Can I combine multiple skills into one test?

Yes, absolutely. Custom assessments are set up based on your job description, and will include questions on all must-have skills you specify. Here's a quick guide on how you can request a custom test.

What roles can I use the Drupal Test for?

Here are few roles for which we recommend this test:

  • Drupal Developer
  • Drupal Administrator
  • Drupal Consultant
  • Drupal Support Specialist
Can I see a sample test, or do you have a free trial?

Yes!

The free trial includes one sample technical test (Java/ JavaScript) and one sample aptitude test that you will find in your dashboard when you sign up. You can use it to review the quality of questions and the candidate experience of giving a test on Adaface.

You can preview any of the 500+ tests and see the sample questions to decide if it would be a good fit for your requirements.

How do I interpret test scores?

The primary thing to keep in mind is that an assessment is an elimination tool, not a selection tool. A skills assessment is optimized to help you eliminate candidates who are not technically qualified for the role, it is not optimized to help you find the best candidate for the role. So the ideal way to use an assessment is to decide a threshold score (typically 55%, we help you benchmark) and invite all candidates who score above the threshold for the next rounds of interview.

I'm a candidate. Can I try a practice test?

No. Unfortunately, we do not support practice tests at the moment. However, you can use our sample questions for practice.

customers across world
Join 1500+ companies in 80+ countries.
Try the most candidate friendly skills assessment tool today.
g2 badges
Ready to use the Adaface Drupal Online Test?
Ready to use the Adaface Drupal Online Test?
logo
40 min tests.
No trick questions.
Accurate shortlisting.
Terms Privacy Trust Guide
ada
Ada
● Online
Previous
Score: NA
Next
✖️