Search test library by skills or roles
⌘ K

About the 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.

Covered skills:

  • Drupal node images
  • Drupal user information
  • Drupal Content type
  • Drupal social media
See all covered skills

9 reasons why
9 reasons why

Adaface Prueba en línea de Drupal is the most accurate way to shortlist Drupal Developers



Reason #1

Tests for on-the-job skills

La prueba en línea de Drupal ayuda a los reclutadores y gerentes de contratación a identificar candidatos calificados de un grupo de currículums, y ayuda a tomar decisiones de contratación objetivas. Reduce la sobrecarga administrativa de entrevistar a demasiados candidatos y ahorra un costoso tiempo de ingeniería al filtrar candidatos no calificados.

La prueba de prueba en línea de Adaface Drupal, los candidatos para las habilidades típicas buscan en un desarrollador de Drupal:

  • Fuerte comprensión de los marcos PHP y PHP
  • Experiencia Instalación y construcción de módulos Drupal
  • Familiaridad con el desarrollo de temas de Drupal
  • Competencia en el control de versiones con Git
  • Familiaridad con la escritura de código de bajo nivel y de alto nivel

Los reclutadores y los gerentes de contratación pueden utilizar las ideas generadas a partir de esta evaluación para identificar a los mejores candidatos para el papel. Las características anti-trato le permiten sentirse cómodo realizando evaluaciones en línea. La prueba de desarrollador de Drupal es ideal para ayudar a los reclutadores a identificar qué candidatos tienen las habilidades técnicas para que funcionen bien en el trabajo.

La prueba en línea de Drupal le ayuda a evaluar a los candidatos. Entrevista solo a los candidatos con experiencia técnica práctica comprobada en desarrollo y programación de Drupal. La idea detrás de este cuestionario de Drupal en línea es ayudarlo a evaluar los conceptos de Drupal en el trabajo, las habilidades de codificación y depuración con una sola prueba.

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.

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.

Estas son solo una pequeña muestra de nuestra biblioteca de más de 10,000 preguntas. Las preguntas reales sobre esto Drupal Online Test no se puede obtener.

🧐 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

Medium

Alter and Change
OOPs
Solve
What does the following code output?
 image

Hard

Exceptions
Exceptions
Solve
What does the following code output?
 image

Medium

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

Medium

Alter and Change
OOPs
2 mins
PHP
Solve

Hard

Exceptions
Exceptions
2 mins
PHP
Solve

Medium

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
Medium2 mins
Solve
Exceptions
Exceptions
PHP
Hard2 mins
Solve
PDO MySQL
Database Connections
PHP
Medium2 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

Con Adaface, pudimos optimizar nuestro proceso de detección inicial en más del 75%, ¡liberando un tiempo precioso tanto para los gerentes de contratación como para nuestro equipo de adquisición de talentos!


Brandon Lee, Jefe de personas, Love, Bonito

Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment Drupal Online Test 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.

Reason #6

1 click candidate invites

Email invites: You can send candidates an email invite to the Drupal Online Test 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


Sobre el rol de desarrollador de Drupal

Drupal es un sistema de gestión de contenido web gratuito y de código abierto escrito en PHP y distribuido bajo la Licencia Pública General de GNU. En los últimos años, Drupal se ha convertido en un CMS líder para organizaciones de nivel empresarial.

Un desarrollador de Drupal es alguien que escribe código en PHP y otros idiomas del lado del servidor. Escriben módulos personalizados, pruebas automatizadas, consumen servicios web, automatizar la implementación, etc.

Las responsabilidades típicas del desarrollador de Drupal incluyen:

  • Responsable de ayudar a formular un diseño efectivo y receptivo y convertirlo en un tema de trabajo.
  • Trabaje en estrecha colaboración con los desarrolladores y clientes de back-end para garantizar una implementación efectiva, visualmente atractiva e intuitiva
  • Garantizar el alto rendimiento y la disponibilidad
  • Gestión de todos los aspectos técnicos del CMS
  • Establecer y guiar la arquitectura del sitio web

What roles can I use the Drupal Online Test for?

  • Drupal Developer
  • Drupal Programmer

What topics are covered in the Prueba en línea de Drupal?

Imágenes de nodo
Tipo de contenido de Drupal
Informacion del usuario
Compositor de drupal
Gancho de biblioteca
Espacio de nombres
ALTERAR
ACTUALIZAR
Diff y parche

Drupal Cron se usa para ejecutar los comandos o scripts automáticamente a intervalos de fecha y hora particulares.

Drupal Cron
Escalabilidad
Caché
Paneles de drupal
Módulo de vistas
Chools
preprocesador
subtema
filtro contextual
API de entidad
Moderación de Comentario
Módulos
Capa de abstracción de la base de datos
URL amigable con el SEO

Breadcrumb Trail es una ayuda de navegación utilizada en interfaces de Drupal.

Migas de pan
Patrón de diseño de singleton
Objetos de datos de PHP

Los ganchos permiten que los módulos alteren y extiendan el comportamiento del núcleo Drupal u otro módulo.

Manos

En Drupal, las matrices de renderización proporcionan una forma estructurada de cambiar programáticamente el contenido antes de que se muestre.

Matriz de representación
Almacenamiento de almacenamiento en caché
Almacenamiento en caché de la página
Singapore government logo

Los gerentes de contratación consideraron que a través de las preguntas técnicas que hicieron durante las entrevistas del panel, pudieron decir qué candidatos tuvieron mejores puntajes y se diferenciaron con aquellos que no obtuvieron puntajes también. Ellos son altamente satisfecho con la calidad de los candidatos preseleccionados con la proyección de Adaface.


85%
Reducción en el tiempo de detección

Preguntas frecuentes

¿Puedo combinar múltiples habilidades en una evaluación personalizada?

Si, absolutamente. Las evaluaciones personalizadas se configuran en función de la descripción de su trabajo e incluirán preguntas sobre todas las habilidades imprescindibles que especifique.

¿Tiene alguna característica anti-trato o procuración en su lugar?

Tenemos las siguientes características anti-trate en su lugar:

  • Preguntas no postradas
  • Procuración de IP
  • Procedor web
  • Procedores de cámara web
  • Detección de plagio
  • navegador seguro

Lea más sobre las funciones de procuración.

¿Cómo interpreto los puntajes de las pruebas?

Lo principal a tener en cuenta es que una evaluación es una herramienta de eliminación, no una herramienta de selección. Una evaluación de habilidades está optimizada para ayudarlo a eliminar a los candidatos que no están técnicamente calificados para el rol, no está optimizado para ayudarlo a encontrar el mejor candidato para el papel. Por lo tanto, la forma ideal de usar una evaluación es decidir un puntaje umbral (generalmente del 55%, lo ayudamos a comparar) e invitar a todos los candidatos que obtienen un puntaje por encima del umbral para las próximas rondas de la entrevista.

¿Para qué nivel de experiencia puedo usar esta prueba?

Cada evaluación de AdaFace está personalizada para su descripción de trabajo/ persona candidata ideal (nuestros expertos en la materia elegirán las preguntas correctas para su evaluación de nuestra biblioteca de más de 10000 preguntas). Esta evaluación se puede personalizar para cualquier nivel de experiencia.

¿Cada candidato tiene las mismas preguntas?

Sí, te hace mucho más fácil comparar los candidatos. Las opciones para las preguntas de MCQ y el orden de las preguntas son aleatorizados. Tenemos características anti-trato/procuración en su lugar. En nuestro plan empresarial, también tenemos la opción de crear múltiples versiones de la misma evaluación con cuestiones de niveles de dificultad similares.

Soy candidato. ¿Puedo probar una prueba de práctica?

No. Desafortunadamente, no apoyamos las pruebas de práctica en este momento. Sin embargo, puede usar nuestras preguntas de muestra para la práctica.

¿Cuál es el costo de usar esta prueba?

Puede consultar nuestros planes de precios.

¿Puedo obtener una prueba gratuita?

Sí, puede registrarse gratis y previsualice esta prueba.

Me acabo de mudar a un plan pagado. ¿Cómo puedo solicitar una evaluación personalizada?

Aquí hay una guía rápida sobre cómo solicitar una evaluación personalizada en Adaface.

customers across world
Join 1200+ companies in 75+ countries.
Pruebe la herramienta de evaluación de habilidades más amigables para los candidatos hoy en día.
g2 badges
Ready to use the Adaface Drupal Online Test?
Ready to use the Adaface Drupal Online Test?
habla con nosotros
logo
40 min tests.
No trick questions.
Accurate shortlisting.
Términos Privacidad Guía de confianza

🌎 Elige tu idioma

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