Search test library by skills or roles
⌘ K

About the test:

La prueba de JavaScript, NodeJS & React utiliza MCQ basados ​​en escenarios para evaluar a los candidatos sobre su competencia en el lenguaje de programación de JavaScript, el entorno de tiempo de ejecución de NodeJS y la biblioteca React para el desarrollo frontal. La prueba evalúa la comprensión de los candidatos de temas como la arquitectura basada en componentes, la gestión del estado, los ganchos reaccionados, la representación del lado del servidor y el DOM virtual. Los candidatos se evalúan sobre su capacidad para usar JavaScript, NodeJS y reaccionar para desarrollar aplicaciones web receptivas y escalables, así como su competencia en la escritura de código optimizado y seguro.

Covered skills:

  • Conceptos básicos de JavaScript
  • JS oops
  • Nodo asincrónico.js y promesas
  • Solicitar el ciclo de vida de respuesta
  • REACT COMPONENT CYCLE
  • Programación JavaScript
  • JS ES6
  • API de manejo
  • Sistema de módulo node.js
  • Construir componentes con JSX
  • Reaccionar ganchos y componentes funcionales

Try practice test
9 reasons why
9 reasons why

Adaface JavaScript, NodeJS & React Test is the most accurate way to shortlist Desarrollador de JavaScripts



Reason #1

Tests for on-the-job skills

The JavaScript, NodeJS & React 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:

  • Capaz de manejar eficientemente excepciones y errores
  • Fuerte comprensión de la sintaxis y funciones de JavaScript
  • Competente en características de ES6 como funciones de flecha y literales de plantilla
  • Conocimiento de principios de programación orientados a objetos en JavaScript
  • Experiencia en el manejo de las API y la realización de solicitudes de AJAX
  • Comprensión de los conceptos de programación asíncrona en node.js utilizando promesas
  • Familiaridad con el sistema de módulos Node.js y cómo organizar el código en módulos
  • Comprensión del ciclo de vida de solicitud de respuesta en node.js
  • Capacidad para construir componentes utilizando JSX en React
  • Conocimiento del ciclo de vida del componente React y cómo administrar el estado de los componentes
  • Familiaridad con los ganchos react y los componentes funcionales
  • Competencia en programación de JavaScript
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

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

🧐 Question

Medium

Async Await Promises
Promises
Async-Await
Try practice test
What will the following code output?
 image
A: 24 after 5 seconds and after another 5 seconds, another 24
B: 24 followed by another 24 immediately
C: 24 immediately and another 24 after 5 seconds
D: After 5 seconds, 24 and 24
E: Undefined
F: NaN
G: None of these

Medium

Bitcoin prices
Axios
Promises
Try practice test
Review the following JavaScript code and pick the correct options: 
 image
Assume that the API returns a successful 200 response code and a JSON object as the response body. What would the value of ‘a’ be after the code is executed?

Medium

My Module
Scope
Try practice test
What will the output of the following JavaScript code be?
 image
 image

Medium

Promise Resolve
Promises
Async-Await
Try practice test
What does the following code output? 
 image

Easy

Throw, Try, Async
Promises
Async-Await
Try practice test
What does the following JS code output?
 image

Medium

I/O cycle and main module
Event Loop
Try practice test
Review the following NodeJS code:
 image
Pick the correct statements:

A: X will be logged after Y always
B: Y will be logged after X always
C: The order of executing timeout and immediate callbacks is non-deterministic and is bound by the performance of the process
D: In this case, the function calls are scheduled in the main module and not in the I/O cycle
E: In this case, the function calls are scheduled in the I/O cycle so setImmediate is always executed before any timers scheduled in the I/O phase, independently of how many timers are left

Easy

Res methods
Try practice test
If none of the methods (res.download, res.end, res.json, res.jsonp, res.redirect, res.render, res.send, res.sendFile, res.sendStatus) are called from a route handler to terminate request response cycle, what happens to the the client request?
A) Will be left hanging indefinitely

B) Will get an internal server error - 500 

C) Will get a service unavailable error - 503

D) Will be left hanging for a while and then request timeout error - 408

Medium

Phases and Timers
Event Loop
Try practice test
Review the following NodeJS code:
 image
Pick the correct statements:

A: Adaface will be logged after Lovelace.
B: Lovelace will be logged after Adaface.
C: Once the asyncOpThatTakes195ms completes reading the file, it starts executing the callback which takes 10 seconds. Only after this is finished, the event loop will execute the timers that are finished. So the timeout call back will actually be executed after 205 ms even though it is scheduled to be run after 200 ms
D: Once the asyncOpThatTakes195ms completes reading the file, it starts executing the callback. While executing the callback, the scheduled timer becomes ready to be executed. So the runtime executes the timer and then completes processing the callback.

Hard

Context re-renders
React Context API
Conditional Rendering
Component Lifecycle State
Try practice test
Review the following React code:
 image
Pick the correct statements:

A: The code renders 10 INDIAN RUPEE
B: The code renders 10 SINGAPORE DOLLAR
C: The code does not render anything and throws an error since JavaScript objects are not valid as React children
D: When the currency portion is clicked, the parent component is re-rendered
E: When the currency portion is clicked, parent component will skip the re-render because shouldComponentUpdate returns false
F: Parent component can be converted to a functional component with memoization (useMemo or memo) to avoid the re-render

Medium

Hooks with Conditional Rendering
Hooks
Conditional Rendering
Event Handling
Try practice test
Consider a React functional component that utilizes various hooks and conditional rendering. The component is designed to fetch and display a list of items from an API, with the ability to filter the list based on user input. Here's the pseudo-code structure:
 image
In this component, which of the following is a potential issue or inefficiency?
A: The component will re-render excessively due to the `setFilter` call.
B: The `useEffect` hook will run on every render, causing performance issues.
C: The `fetchItems` function may cause a memory leak if the component unmounts during the fetch.
D: The `useMemo` hook for `filteredItems` is unnecessary and can be removed without impact.
E: The component will fail to display items when the filter is cleared.
F: There are no significant issues; the component is implemented optimally.

Medium

Rhyme Reducer
Reducer functions
Immutable update patterns
Lazy initialization
Try practice test
Which of the following React code snippets
- triggers the reducer ‘rhymeReducer’ to update the ‘song’ value to ‘Jack and Jill’
- renders the updated ‘song’ value
- does not produce any errors/warnings
 image
 image

Hard

State Handling with Custom Hooks
Custom Hooks
Context API
Event Handling
Try practice test
Consider a React application where a custom hook `useComplexState` is defined to manage a complex state object. The application also uses the Context API to pass down the state and dispatch function. Below is the pseudo-code for the custom hook and a component using it:
 image
Given this setup, which of the following statements best describes the potential issue or challenge with `MyComponent`?
A: The component will not re-render when the global state changes.
B: The `fetchData` function will cause an infinite loop of re-renders.
C: The component will lose its state when the global state updates.
D: There will be a memory leak due to improper cleanup in `useEffect`.
E: The `dispatch` function from `useComplexState` will conflict with the global dispatch.
F: There is no issue; the component is implemented correctly.

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

Async Await Promises
Promises
Async-Await

2 mins

JavaScript
Try practice test

Medium

Bitcoin prices
Axios
Promises

2 mins

JavaScript
Try practice test

Medium

My Module
Scope

2 mins

JavaScript
Try practice test

Medium

Promise Resolve
Promises
Async-Await

2 mins

JavaScript
Try practice test

Easy

Throw, Try, Async
Promises
Async-Await

2 mins

JavaScript
Try practice test

Medium

I/O cycle and main module
Event Loop

2 mins

NodeJS
Try practice test

Easy

Res methods

3 mins

NodeJS
Try practice test

Medium

Phases and Timers
Event Loop

2 mins

NodeJS
Try practice test

Hard

Context re-renders
React Context API
Conditional Rendering
Component Lifecycle State

3 mins

React
Try practice test

Medium

Hooks with Conditional Rendering
Hooks
Conditional Rendering
Event Handling

3 mins

React
Try practice test

Medium

Rhyme Reducer
Reducer functions
Immutable update patterns
Lazy initialization

3 mins

React
Try practice test

Hard

State Handling with Custom Hooks
Custom Hooks
Context API
Event Handling

3 mins

React
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
Async Await Promises
Promises
Async-Await
JavaScript
Medium2 mins
Try practice test
Bitcoin prices
Axios
Promises
JavaScript
Medium2 mins
Try practice test
My Module
Scope
JavaScript
Medium2 mins
Try practice test
Promise Resolve
Promises
Async-Await
JavaScript
Medium2 mins
Try practice test
Throw, Try, Async
Promises
Async-Await
JavaScript
Easy2 mins
Try practice test
I/O cycle and main module
Event Loop
NodeJS
Medium2 mins
Try practice test
Res methods
NodeJS
Easy3 mins
Try practice test
Phases and Timers
Event Loop
NodeJS
Medium2 mins
Try practice test
Context re-renders
React Context API
Conditional Rendering
Component Lifecycle State
React
Hard3 mins
Try practice test
Hooks with Conditional Rendering
Hooks
Conditional Rendering
Event Handling
React
Medium3 mins
Try practice test
Rhyme Reducer
Reducer functions
Immutable update patterns
Lazy initialization
React
Medium3 mins
Try practice test
State Handling with Custom Hooks
Custom Hooks
Context API
Event Handling
React
Hard3 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

Con Adaface, pudimos optimizar nuestro proceso de selección inicial en más de un 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

Try practice test
Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment JavaScript, NodeJS y React 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.

Science behind Adaface tests
Reason #6

1 click candidate invites

Email invites: You can send candidates an email invite to the JavaScript, NodeJS y React 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

Ver cuadro de mando de muestra
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 JavaScript, NodeJS & React Assessment Test

Why you should use Pre-employment JavaScript, NodeJS & React Online Test?

The JavaScript, NodeJS y React Test 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:

  • Comprender e implementar conceptos básicos de JavaScript, como variables, tipos de datos, operadores y estructuras de control
  • Utilización de las características y la sintaxis de ES6 (Ecmascript 2015) en JavaScript
  • Aplicación de principios de programación orientados a objetos en JavaScript
  • Manejo y realización de solicitudes asincrónicas utilizando API en JavaScript
  • Utilizando promesas y comprensión del concepto de programación asincrónica en node.js
  • Implementación del sistema de módulos Node.js y comprensión de sus beneficios
  • Comprender el ciclo de vida de solicitud-respuesta en el desarrollo web
  • Construir componentes con JSX en React
  • Comprender e implementar el ciclo de vida del componente React
  • Utilizando los ganchos react y los componentes funcionales para crear interfaces dinámicas de usuario

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 JavaScript, NodeJS & React Online Test?

  • JavaScript Basics

    JavaScript Basics es una habilidad fundamental que mide la comprensión de un candidato de los conceptos centrales del lenguaje de programación de JavaScript, como tipos de datos, variables, operadores y flujo de control. Es importante evaluar esta habilidad, ya que forma la base para escribir el código JavaScript de manera efectiva y eficiente.

  • JS ES6

    JS ES6 (Ecmascript 6) se centra en las características modernas introducidas en JavaScript, incluyendo funciones de flecha, destructación, clases, módulos y literales de objetos mejorados. Evaluar esta habilidad es crucial ya que determina la capacidad de un candidato para aprovechar las últimas características y mejoras de sintaxis en JavaScript.

  • js oops

    js oops (programación orientada a objetos en javascript) evalúa A a Conocimiento del candidato sobre los principios y técnicas orientados a objetos en JavaScript, como la encapsulación, la herencia y el polimorfismo. Esta habilidad es importante ya que permite a los desarrolladores diseñar e implementar aplicaciones robustas y escalables con JavaScript.

  • Manejo de API

    Las API de manejo miden el dominio de un candidato para interactuar con API externos (interfaces de programación de aplicaciones ) usando JavaScript. Esta habilidad es esencial, ya que demuestra la capacidad de obtener, enviar y procesar datos de fuentes externas, lo que a menudo se requiere en proyectos de desarrollo web.

  • node asincrónico.js y promesas

    Node.js y promesas asíncronas evalúan la comprensión de un candidato de la programación asincrónica en Node.js y el uso de promesas para manejar operaciones asíncronas. Esta habilidad es crucial ya que Node.js se usa ampliamente para construir aplicaciones del lado del servidor, y el manejo eficiente de las operaciones asíncronas es clave para lograr un buen rendimiento y capacidad de respuesta. P> Node.js Module System evalúa la familiaridad de un candidato con el sistema de módulo en Node.js, que permite la organización y la reutilización del código a través de los módulos. Esta habilidad es importante, ya que permite a los desarrolladores aprovechar los módulos existentes, mantener la separación y modularidad del código, y facilitar el proceso de desarrollo en Node.js.

  • Solicitar el ciclo de vida de respuesta

    Medidas del ciclo de vida de respuesta de solicitud La comprensión de un candidato sobre el flujo y las etapas involucradas en el procesamiento de solicitudes HTTP y generar respuestas en aplicaciones web. Esta habilidad es crucial para los desarrolladores web, ya que garantiza que puedan manejar y manipular de manera efectiva las solicitudes HTTP, realizar las acciones necesarias y generar respuestas precisas basadas en las solicitudes del cliente.

  • Componentes de construcción con JSX

    La construcción de componentes con JSX evalúa la capacidad de un candidato para crear componentes reutilizables y modulares en React usando JSX (JavaScript XML). Esta habilidad es importante ya que JSX simplifica el proceso de crear interfaces de usuarios dinámicas e interactivas con React, lo que permite a los desarrolladores construir estructuras de interfaz de usuario complejas de manera eficiente.

  • React Component Lifecycle

    React Component Lifecycle evalúa A Conocimiento del candidato sobre las diversas fases y métodos asociados con el ciclo de vida de un componente React. Esta habilidad es crucial, ya que permite a los desarrolladores controlar y administrar la representación de componentes, montaje, actualización y desmontaje, mejorando así el rendimiento y el comportamiento de las aplicaciones react. > Los ganchos reactos y los componentes funcionales miden la competencia de un candidato en la utilización de ganchos react y la construcción de componentes funcionales en React. Esta habilidad es importante ya que los ganchos reaccionados proporcionan una forma concisa y eficiente de administrar el estado, los efectos secundarios y otras características React en los componentes funcionales, promoviendo la reutilización del código y la mejora de la organización general del código.

  • programación JavaScript

    La programación de JavaScript evalúa la competencia general de un candidato en JavaScript y su capacidad para aplicar el lenguaje para resolver desafíos de programación complejos. Esta habilidad es una evaluación integral del conocimiento de un candidato, que cubre una amplia gama de conceptos de JavaScript, sintaxis y mejores prácticas para garantizar que puedan escribir código JavaScript eficiente, mantenible y escalable.

  • 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 JavaScript, NodeJS y React Test to be based on.

    Variables
    Tipos de datos
    Operadores
    Flujo de control
    Funciones
    Matrices
    Objetos
    Alcance
    Cierre
    Prototipo
    Herencia
    Funciones de flecha
    Literales de plantilla
    Destructor
    Promesas
    Asíncrono/espera
    Módulos
    Npm
    Express.js
    Enrutamiento
    Middleware
    Ajax
    Promesas
    Funciones de devolución de llamada
    Corrientes
    Buffers
    Sistema de archivos
    Manejo de errores
    Depuración
    Componentes reaccionarios
    Jsx
    Estado componente
    Métodos de ciclo de vida
    Reaccionamiento de ganchos
    Manejo de eventos
    Formularios
    Componentes de orden superior
    API de contexto
    Administración del Estado
    Enrutador reaccionado
    Examen de la unidad
    Pruebas de integración
    Depuración
    Programación funcional
    Estructuras de datos
    Algoritmos
    Manipulación DOM
    Manejo de eventos
    Manejo de errores
    Expresiones regulares
    Json
    API de buscar
    Almacenamiento local
    Sesion -storage
    Fecha y hora
    Matemáticas
    Manejo de errores
    Depuración
Try practice test

What roles can I use the JavaScript, NodeJS & React Online Test for?

  • Desarrollador de JavaScript
  • Desarrollador frontend
  • Desarrollador de pila completa
  • Desarrollador de node.js
  • Reaccionador

How is the JavaScript, NodeJS & React 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

  • Aplicación de conceptos de programación de JavaScript en la resolución de problemas
  • Trabajar con eventos de JavaScript y manejo de eventos
  • Implementación y trabajo con estructuras de datos de JavaScript
  • Comprender y utilizar cierres en JavaScript
  • Implementación de manejo de errores y gestión de excepciones en JavaScript
  • Trabajar con bibliotecas y marcos de terceros en JavaScript
  • Comprender y trabajar con APIs RESTful
  • Construcción e implementación de aplicaciones utilizando node.js y express.js
  • Implementación de la gestión estatal en React utilizando REDUX o API de contexto
  • Escribir código JavaScript optimizado y eficiente

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

Singapore government logo

Los gerentes de contratación sintieron que a través de las preguntas técnicas que hicieron durante las entrevistas del panel, pudieron decir qué candidatos tenían mejores puntajes y diferenciarse de aquellos que no obtuvieron tan buenos puntajes. Ellos son altamente satisfecho con la calidad de los candidatos preseleccionados con la selección de Adaface.


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

JavaScript, NodeJS & React Hiring Test 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 JavaScript, NodeJS y React Test?
Ready to use the Adaface JavaScript, NodeJS y React Test?
habla con nosotros
ada
Ada
● Online
✖️