Search test library by skills or roles
⌘ K

About the test:

La prueba en línea de Laravel utiliza preguntas MCQ basadas en escenarios para evaluar la capacidad de un candidato para crear aplicaciones web dinámicas utilizando Laravel. Las preguntas están diseñadas para evaluar el conocimiento del trabajo con los fundamentos de Laravel (rutas, controladores, vistas), bases de datos (conectar, migrar, semillas y consultas) y errores (identificar, manejar y resolver excepciones). La prueba utiliza MCQ y preguntas de codificación para evaluar las habilidades prácticas de programación de PHP.

Covered skills:

  • Trabajar con rutas y controladores
  • Trabajar con plantillas y componentes de cuchilla
  • Manejo de archivos
  • Formularios y validaciones de solicitud
  • Identificación y manejo de excepciones
  • Construyendo vistas dinámicas
  • Migraciones y relaciones de bases de datos
  • ORM y consultas crudas de SQL
  • Middleware y sesiones

Try practice test
9 reasons why
9 reasons why

Adaface Prueba en línea de Laravel is the most accurate way to shortlist Desarrollador de pila completas



Reason #1

Tests for on-the-job skills

The Prueba en línea de Laravel 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:

  • Trabajar con rutas y controladores
  • Construyendo vistas dinámicas
  • Trabajar con plantillas y componentes de cuchilla
  • Migraciones y relaciones de bases de datos
  • Manejo de archivos
  • ORM y consultas crudas de SQL
  • Formularios y validaciones de solicitud
  • Middleware y sesiones
  • Identificación y manejo de excepciones
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 Prueba en línea de Laravel no se puede obtener.

🧐 Question

Medium

Applying Middleware to Resource Routes
Middleware
Routing
Try practice test
You are developing a Laravel application that has a PostController for managing blog posts. The routes for this controller are set up as a resource route in your web.php file:
 image
You have already created a middleware called EnsureAdminRole to restrict access to certain routes for admin users. Now, you want to apply this middleware to the create, edit, update, and delete routes for the PostController, but not the index or show routes.

Which of the following ways would correctly apply the EnsureAdminRole middleware to these routes?
 image

Medium

Custom Validation Rule
Validation
Request Handling
Custom Rules
Try practice test
In your Laravel application, you are implementing a registration form where users enter their birthdate as a string in the 'Y-m-d' format. You want to ensure that only users aged 18 years or older can register. To achieve this, you decide to write a custom validation rule. Consider the following implementation of the custom rule and a function to handle the registration request:
 image
Which of the following code snippets correctly fills the passes method in the AgeRestriction class to ensure that only users aged 18 or older can register, given that the birthdate is a string in the 'Y-m-d' format?
 image

Medium

Eloquent Relationship Handling
ORM
Relationships
Database Operations
Try practice test
Consider the following code snippet in a Laravel application:
 image
Assume the user 'John Doe' is the first user in the User table. You want to retrieve all comments belonging to a post made by this user ('John Doe'). Which of the following Eloquent expressions is the correct way to achieve this?
 image

Medium

Route Model Binding
Routing
Controllers
Eloquent
Try practice test
In your Laravel application, you're making use of route model binding to handle retrieving models based on the incoming request. You have a route defined as follows:
 image
In your PostController, the show method looks like this:
 image
Now, imagine that instead of using the ID, you want to retrieve posts by their 'slug' for SEO purposes. Which of the following changes should you make in order to achieve this?
A: Modify the route to Route::get('/posts/{slug}', 'PostController@show'); and change the show method to public function show($slug).
B: Modify the getRouteKeyName method in the Post model to return 'slug'.
C: Change the show method to public function show(Post $slug).
D: No changes are needed, Laravel will automatically use the 'slug' if it exists.

Medium

Service Container
Service Container
Dependency Injection
Try practice test
In a Laravel application, the Service Container is a powerful tool for managing class dependencies and performing dependency injection. You're building a payment feature and created an interface PaymentGatewayInterface and two concrete classes, StripePaymentGateway and PaypalPaymentGateway, which implement this interface.

The application should use StripePaymentGateway for users located in the US, and PaypalPaymentGateway for users located in Europe.

Which of the following approach would you use to register these bindings in the Service Container?
A: Use App::bind(PaymentGatewayInterface::class, StripePaymentGateway::class) for US users and App::bind(PaymentGatewayInterface::class, PaypalPaymentGateway::class) for European users.

B: Use App::singleton(PaymentGatewayInterface::class, StripePaymentGateway::class) for US users and App::singleton(PaymentGatewayInterface::class, PaypalPaymentGateway::class) for European users.

C: Use a conditional statement within the binding closure of App::bind to check the user's location and bind the appropriate concrete class.

D: Use App::instance(PaymentGatewayInterface::class, new StripePaymentGateway) for US users and App::instance(PaymentGatewayInterface::class, new PaypalPaymentGateway) for European users.

E: Use App::when('App\\Http\\Controllers\\PaymentController')->needs(PaymentGatewayInterface::class)->give(StripePaymentGateway::class) for US users and the same method with PaypalPaymentGateway::class for European users.

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?

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

Applying Middleware to Resource Routes
Middleware
Routing

2 mins

Laravel
Try practice test

Medium

Custom Validation Rule
Validation
Request Handling
Custom Rules

3 mins

Laravel
Try practice test

Medium

Eloquent Relationship Handling
ORM
Relationships
Database Operations

3 mins

Laravel
Try practice test

Medium

Route Model Binding
Routing
Controllers
Eloquent

2 mins

Laravel
Try practice test

Medium

Service Container
Service Container
Dependency Injection

2 mins

Laravel
Try practice test

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

Easy

Registration Queue
Logic
Queues

30 mins

Coding
Solve

Medium

Visitors Count
Strings
Logic

30 mins

Coding
Solve
🧐 Question🔧 Skill💪 Difficulty⌛ Time
Applying Middleware to Resource Routes
Middleware
Routing
Laravel
Medium2 mins
Try practice test
Custom Validation Rule
Validation
Request Handling
Custom Rules
Laravel
Medium3 mins
Try practice test
Eloquent Relationship Handling
ORM
Relationships
Database Operations
Laravel
Medium3 mins
Try practice test
Route Model Binding
Routing
Controllers
Eloquent
Laravel
Medium2 mins
Try practice test
Service Container
Service Container
Dependency Injection
Laravel
Medium2 mins
Try practice test
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
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 Prueba en línea de Laravel 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 Prueba en línea de Laravel 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 Prueba en línea de Laravel

Why you should use Prueba en línea de Laravel?

The Prueba en línea de Laravel 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:

  • Trabajar con rutas y controladores
  • Construyendo vistas dinámicas
  • Trabajar con plantillas y componentes de cuchilla
  • Migraciones y relaciones de bases de datos
  • Manejo de archivos
  • ORM y consultas crudas de SQL
  • Formularios y validaciones de solicitud
  • Middleware y sesiones
  • Identificación y manejo de excepciones
  • Trabajar con integraciones de API

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 Prueba en línea de Laravel?

  • Trabajar con rutas y controladores

    Esta habilidad implica crear y administrar rutas en una aplicación Laravel, y usar controladores para manejar estas rutas. Las rutas definen las URL a las que los usuarios pueden acceder, y los controladores contienen la lógica para procesar estas solicitudes y devolver las respuestas apropiadas.

  • Creación de vistas dinámicas

    Esta habilidad se centra en crear vistas dinámicas en Laravel , que implica generar contenido HTML que pueda emitir datos del backend de la aplicación. Las vistas dinámicas permiten la presentación de información actualizada a los usuarios y mejoran la experiencia del usuario.

  • Trabajar con plantillas y componentes de cuchillas

    Las plantillas de cuchillas son una herramienta poderosa para crear componentes de UI reutilizables y personalizables. Esta habilidad implica utilizar la sintaxis de la cuchilla para crear plantillas y componentes dinámicos, lo que permite el desarrollo y el mantenimiento eficientes de la frontend de la aplicación.

  • Las migraciones y relaciones de bases de datos

    son una parte esencial de Laravel's. sistema de administración de base de datos. Esta habilidad implica administrar la estructura de la base de datos de la aplicación utilizando archivos de migración que definen los cambios en el esquema. Además, la comprensión de las relaciones entre las tablas de bases de datos es crucial para construir aplicaciones eficientes y escalables.

  • Manejo de archivos

    Esta habilidad cubre la capacidad de trabajar con archivos en una aplicación de Laravel, que incluye la carga, almacenamiento, almacenamiento, almacenamiento. y recuperar archivos del sistema de archivos o almacenamiento en la nube. El manejo de archivos es importante para varios casos de uso, como cargas de archivos de usuario, administración de archivos, o generar y servir archivos generados dinámicamente.

  • orm y consultas SQL crud crudas

    orm (objeto- El mapeo relacional) en Laravel permite a los desarrolladores interactuar con la base de datos utilizando métodos orientados a objetos en lugar de escribir consultas SQL sin procesar. Esta habilidad implica usar ORM y comprender los conceptos básicos de las consultas SQL sin procesar para realizar operaciones de crud (crear, leer, actualizar, eliminar) en la base de datos con facilidad.

  • formularios y solicitar validaciones

    Esta habilidad implica crear formularios en Laravel para recopilar la entrada del usuario y validar los datos de entrada basados ​​en reglas definidas. El manejo y la validación de formularios adecuados son esenciales para garantizar la integridad y la seguridad de los datos en las aplicaciones web.

  • middleware y sesiones

    El middleware en Laravel se encuentra entre el servidor web y la aplicación, proporcionando una manera conveniente para filtrar y modificar las solicitudes HTTP entrantes. Esta habilidad implica trabajar con el middleware para implementar la seguridad, la autenticación y la gestión de sesiones, asegurando una aplicación sólida y segura.

  • Identificación y manejo de excepciones

    Esta habilidad se centra en identificar y manejar excepciones que puede ocurrir durante la ejecución de una aplicación de Laravel. Comprender cómo atrapar y manejar las excepciones es crucial para la depuración, la gestión de errores y proporcionar una experiencia de usuario perfecta.

  • 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 Prueba en línea de Laravel to be based on.

    Rutas
    Controladores
    Middleware
    Puntos de vista
    Plantillas de cuchilla
    Vistas dinámicas
    Componentes
    Migraciones de bases de datos
    Relaciones de bases de datos
    Manejo de archivos
    Acomodar
    Consultas SQL Crud
    Formularios
    Validaciones de solicitud
    Sesiones
    Excepciones
    Manejo de errores
    Manejo de excepciones
Try practice test

What roles can I use the Prueba en línea de Laravel for?

  • Desarrollador de pila completa
  • Desarrollador de backend
  • Desarrollador web
  • Desarrollador PHP
  • Desarrollador de Laravel
  • Desarrollador senior de Laravel

How is the Prueba en línea de Laravel 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

  • Optimización del rendimiento del código
  • Implementación de autenticación y autorización
  • Implementación de mecanismos de almacenamiento en caché
  • Trabajar con colas y trabajos
  • Implementación de la internacionalización y localización
  • Implementación de la funcionalidad de búsqueda
  • Implementación de la unidad y las pruebas de integración

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

Prueba en línea de Laravel Preguntas frecuentes

¿Puedo evaluar PHP y Laravel en la misma prueba?

Sí. Admitimos evaluar PHP y Laravel en la misma evaluación. Puede revisar nuestra prueba estándar lista para usar PHP + Laravel para comprender cómo se diseñaría la evaluación. Para evaluaciones personalizadas, diseñamos las preguntas según la descripción de su trabajo y la prueba final evaluará PHP, Laravel y habilidades de codificación.

¿Puedo evaluar HTML/CSS, JavaScript en la misma evaluación?

Sí. Apoyamos la evaluación de habilidades de frontend (JavaScript, HTML/CSS) y de framework (Laravel) en la misma evaluación. Puede consultar nuestra prueba de JavaScript, [prueba de HTML/CSS](https://www.adaface.com/assessment-test /html-css-online-test) para tener una idea de qué tipo de preguntas se incluirán en la evaluación.

¿Puedo evaluar SQL y Laravel en la misma prueba?

Sí. Puedes evaluar múltiples habilidades en una sola evaluación. Puede consultar nuestra [prueba SQL] estándar (https://www.adaface.com/assessment-test/sql-online-test) para tener una idea de las preguntas que se formularían. Puede obtener una evaluación personalizada diseñada que tenga preguntas para evaluar todas las habilidades imprescindibles de la descripción de su trabajo. Entonces, para un rol de desarrollador Backend Laravel estándar, la prueba tendrá preguntas para evaluar PHP, SQL, Laravel y las habilidades de codificación.

¿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 Prueba en línea de Laravel?
Ready to use the Adaface Prueba en línea de Laravel?
habla con nosotros
ada
Ada
● Online
✖️