Search test library by skills or roles
⌘ K

About the test:

La prueba en línea de Golang utiliza MCQ basados ​​en escenarios para evaluar a los candidatos sobre su conocimiento del lenguaje de programación GO, incluidas la concurrencia, los canales, los tipos y la gestión de la memoria. La prueba también incluye una pregunta de codificación para evaluar las habilidades de programación de Golang prácticas. El objetivo de esta prueba es evaluar la experiencia de un candidato en el desarrollo y la implementación de aplicaciones escalables y eficientes utilizando GO.

Covered skills:

  • GO FUNDAMENTOS
  • Funciones y métodos
  • Matrices y rodajas
  • Concurrencia y canales
  • Paquetes y bibliotecas
  • JSON y servicios web
  • Variables y tipos
  • Flujo de control
  • Estructuras e interfaces
  • Manejo y pruebas de errores
  • Manejo de archivos
  • Conectividad de la base de datos

9 reasons why
9 reasons why

Adaface Go/Golang Test is the most accurate way to shortlist Desarrollador de Golangs



Reason #1

Tests for on-the-job skills

The Go/Golang 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:

  • Comprender y aplicar los fundamentos de Go
  • Trabajar con variables y tipos en Go
  • Creación y uso de funciones y métodos en Go
  • Aplicar conceptos de flujo de control en Go
  • Manipulando matrices y rodajas en Go
  • Utilizando estructuras e interfaces en Go
  • Implementación de concurrencia y uso de canales en GO
  • Manejo de errores y pruebas de realización en GO
  • Trabajar con paquetes y bibliotecas en Go
  • Manipulación de archivos en Go
  • Interactuar con JSON y Servicios web en GO
  • Establecer la conectividad de la base de datos en GO
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
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 Golang no se puede obtener.

🧐 Question

Medium

Defer, Panic, and Recover
Control Flow
Error Handling
Solve
Consider the following Go code snippet, where we're exploring the use of defer, panic, and recover:
 image
In this pseudo-code, badCall function is deliberately causing a panic. test function uses a deferred function to handle the panic and recover from it. What will the output of this code be when it is run?
 image

Medium

Go Maps
Maps
Solve
Which of the following statements are true regarding the order of output for following Go code:
 image
A. Output will be ordered by values
B. Output will be ordered by keys
C. Output will be ordered randomly
D. Output will be ordered by position in the code

Medium

File Handling and Defer
File Handling
Solve
Consider the following Go code. Where should we use *defer*?
 image

Easy

Go WaitGroup
Concurrency
Solve
What does the following Go code output?
 image

Medium

Mutex Locks
Mutex
Goroutines
Concurrency
Solve
Consider the following Go program:
 image
What is the expected output of the final counter when the program is 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

Defer, Panic, and Recover
Control Flow
Error Handling

2 mins

Go
Solve

Medium

Go Maps
Maps

2 mins

Go
Solve

Medium

File Handling and Defer
File Handling

2 mins

Go
Solve

Easy

Go WaitGroup
Concurrency

2 mins

Go
Solve

Medium

Mutex Locks
Mutex
Goroutines
Concurrency

2 mins

Go
Solve

Easy

Registration Queue
Logic
Queues

30 mins

Coding
Solve

Medium

Visitors Count
Strings
Logic

30 mins

Coding
Solve
🧐 Question🔧 Skill💪 Difficulty⌛ Time
Defer, Panic, and Recover
Control Flow
Error Handling
Go
Medium2 mins
Solve
Go Maps
Maps
Go
Medium2 mins
Solve
File Handling and Defer
File Handling
Go
Medium2 mins
Solve
Go WaitGroup
Concurrency
Go
Easy2 mins
Solve
Mutex Locks
Mutex
Goroutines
Concurrency
Go
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 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

Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment Prueba en línea de Golang 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 Golang 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
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 Go/Golang Assessment Test

Why you should use Pre-employment Go/Golang Online Test?

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

  • Comprensión de los fundamentos de Go Go
  • Trabajar con variables y tipos en Go
  • Implementación de funciones y métodos en GO
  • Gestión del flujo de control en Go
  • Manipulando matrices y rodajas en Go
  • Utilizando estructuras e interfaces en Go
  • Comprender la concurrencia y los canales en Go
  • Implementación del manejo y pruebas de errores en GO
  • Trabajar con paquetes y bibliotecas en Go
  • Realizar el manejo de archivos en Go

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 Go/Golang Online Test?

  • GO Fundaments

    Go Fundaments es la base de la programación en el lenguaje GO. Cubre los conceptos básicos de sintaxis, variables, tipos de datos y estructuras de control, lo que permite a los desarrolladores escribir código eficiente y confiable.

  • Las variables y tipos

    son cruciales para Comprender y manipular datos. Proporcionan una forma de almacenar valores y especificar su tipo, permitiendo a los desarrolladores realizar cálculos, transformaciones de datos y comparaciones. modularización del código y alcanzar la reutilización. Encapsulan un conjunto de instrucciones u operaciones para realizar una tarea, mejorando la legibilidad del código y facilitando el mantenimiento y el depuración del flujo de control. El programa se gestiona en función de las condiciones especificadas. Incluye declaraciones if-else, bucles y declaraciones de conmutador, que permiten a los desarrolladores controlar el flujo de ejecución y tomar decisiones basadas en diferentes situaciones.

  • Arrays and Slices

    Arrays and Slices Proporcione formas de organizar y manipular colecciones de datos en GO. Ofrecen almacenamiento y recuperación eficientes de elementos, así como capacidades para clasificar, buscar y modificar estructuras de datos.

  • estructuras e interfaces

    Las estructuras e interfaces son conceptos fundamentales para representar datos complejos estructuras y definición de contratos en Go. Las estructuras proporcionan una forma de agrupar los campos de datos relacionados, mientras que las interfaces definen un conjunto de métodos que un tipo debe implementar, habilitando el comportamiento polimórfico y la reutilización del código.

  • concurrencia y canales

    concurrencia y canales son vitales para escribir programas concurrentes y paralelos en GO. Permiten que múltiples tareas se ejecuten simultáneamente, comunicando y sincronización a través de canales, permitiendo la utilización eficiente de los recursos y la mejora del rendimiento general.

  • Manejo de errores y pruebas

    El manejo y las pruebas de errores son esenciales para escribir para escribir Código de GO robusto y confiable. Implica técnicas para manejar y propagar errores, asegurando la ejecución adecuada del programa, junto con las pruebas de escritura para validar la funcionalidad del código y captar cualquier problema potencial.

  • paquetes y bibliotecas

    PABILLOS y bibliotecas en Go proporcionar modularización y reutilización de código. Permiten a los desarrolladores organizar el código en unidades separadas de funcionalidad, mejorar la mantenibilidad del código y facilitar la colaboración con otros desarrolladores al proporcionar una forma estándar de compartir código y dependencias.

  • Manejo de archivos

    Manejo de archivos In GO implica leer, escribir y manipular archivos. Permite a los desarrolladores trabajar con sistemas de archivos, realizar operaciones como abrir, cerrar, crear y eliminar archivos, así como leer y escribir en archivos, habilitar el almacenamiento y la recuperación de datos.

  • JSON y Servicios web

    JSON y los servicios web son esenciales para construir y consumir API web en GO. JSON es un formato de datos estándar para intercambiar información entre los sistemas, mientras que los servicios web permiten la comunicación a través de Internet, lo que permite a los desarrolladores crear e interactuar con API, recuperar y manipular datos de fuentes externas.

  • 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 Golang to be based on.

    Variables
    Tipos de datos
    Constantes
    Operadores
    Estructuras de Control
    Bucles
    Funciones
    Métodos
    Matrices
    Rodajas
    Puntería
    Estructuras
    Interfaces
    Concurrencia
    Canales
    Manejo de errores
    Pruebas
    Paquetes
    Bibliotecas
    Manejo de archivos
    Json
    Servicios web
    Conectividad de la base de datos
    GO FUNDAMENTOS
    Sintaxis
    Compilación GO
    Go Binary Ejecutable
    Paquetes de Go
    IR IMPORTACIONES
    Funciones Go
    Métodos Go
    Estructuras de Go
    Interfaces Go
    Ir concurrencia
    Canales GO
    GROUTININES
    Manejo de errores Go
    Prueba de Go
    Manejo de archivos Go
    GO JSON MANGING
    Ir Servicios web
    Ir enrutando
    GO MEDILWARE
    Ir HTTP Cliente
    API RESTful
    Conectividad de base de datos GO
    Ir sql
    Ir nosql
    Ir orm
    Ir a los constructores de consultas
    Migraciones de base de datos GO
    Transacciones de base de datos GO

What roles can I use the Go/Golang Online Test for?

  • Desarrollador de Golang
  • Ingeniero de sistemas
  • Desarrollador de microservicios
  • Desarrollador de blockchain

How is the Go/Golang 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

  • Utilizando los servicios JSON y Web en GO
  • Implementación de la conectividad de la base de datos en GO
  • Aplicar conceptos de GO de nivel intermedio
  • Construyendo aplicaciones GO escalables
  • Comprensión de la programación de GO de bajo nivel
  • Optimización del código GO para el rendimiento
  • Implementación de la programación de redes en GO
  • Trabajar con goroutinas y canales
  • Utilización de patrones de concurrencia de Go Advanced Go
  • Solución de problemas y depuración de aplicaciones GO

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

Go/Golang 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 Prueba en línea de Golang?
Ready to use the Adaface Prueba en línea de Golang?
habla con nosotros
ada
Ada
● Online
Previous
Score: NA
Next
✖️