Search test library by skills or roles
⌘ K

About the test:

La prueba Swift iOS está diseñada para evaluar el conocimiento del candidato sobre el lenguaje de programación Swift y su aplicación en el desarrollo de iOS. La prueba utiliza MCQ basados ​​en escenarios para evaluar la competencia del candidato en áreas clave como sintaxis, gestión de memoria, protocolos y marcos como UIKIT, Foundation y Data Core. La prueba también incluye una pregunta de codificación para evaluar las habilidades de programación práctica.

Covered skills:

  • Sintaxis rápida
  • Manejo de errores en Swift
  • Redes en iOS
  • Marco de datos del núcleo
  • Programación rápida
  • Gestión de la memoria en Swift
  • Estructuras de datos en Swift
  • Diseño de interfaz de usuario en iOS
  • Concurrencia en iOS

Try practice test
9 reasons why
9 reasons why

Adaface Swift & iOS Test is the most accurate way to shortlist desarrollador de iOSs



Reason #1

Tests for on-the-job skills

The Swift & iOS 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 la sintaxis rápida de manera efectiva
  • Administrar la memoria en Swift de manera eficiente
  • Manejo de excepciones y errores en Swift con precisión
  • Trabajar con varias estructuras de datos en Swift
  • Implementación de redes en aplicaciones iOS
  • Diseño de interfaces de usuario en iOS de manera efectiva
  • Utilizando el marco de datos principal para la gestión de datos
  • Comprender e implementar la concurrencia en iOS
  • Competente en programación rápida
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 de Swift e iOS no se puede obtener.

🧐 Question

Medium

Data Provider DispatchQueue
Closures
Asychronous operations.
Try practice test
Consider the following code snippet:
 image
What will be printed after the code execution?

Medium

Property Observers
OOPs
Try practice test
Consider the following Swift code snippet:
 image
What does the code print after execution?
A) 800, -100, 80, 80
B) 800, 800, 80, 72
C) 1000, 800, 100, 72
D) 800, 800, 80, 80
E) 800, 0, 80, 80

Medium

Class Destructor
OOPs
Try practice test
What does the following Swift code output?
 image

Easy

Defer blocks
Try practice test
What does the following Swift code output?
 image

Easy

Lazy Variables
Try practice test
What does the following Swift code output?
 image

Medium

Completion Handlers
Views
Animations
Try practice test
Consider the following iOS (Swift) code snippet:
 image
What will happen when this view controller appears?

A) The squareView will move 100 points to the right instantly and then change its background color to blue.
B) The squareView will not move, and its background color will not change.
C) The squareView will change its background color to blue instantly and then move 100 points to the right over 1 second.
D) The squareView will move 100 points to the right and change its background color to blue simultaneously over 1 second.
E) The squareView will move 100 points to the right over 1 second, and the background color will change to blue after 1 second.

Medium

UI Responder Chain
UI
Views
Interaction.
Try practice test
Consider the following iOS (Swift) code snippet:
 image
When the user taps on the CustomButton, what will be the output? Note that UIButton is a subclass of UIControl by default.

A) Only "CustomButton touchesBegan" will be printed.
B) "CustomButton touchesBegan" and "CustomView touchesBegan" will be printed.
C) "CustomButton touchesBegan", "CustomView touchesBegan", and "ViewController touchesBegan" will be printed.
D) "CustomButton touchesBegan" and "ViewController touchesBegan" will be printed.
E) No output will be printed.

Medium

ViewController Buggy Code
Try practice test
Here's two different ways to write the same code in iOS (Swift):
 image
Which of the following statements are correct?
 image

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

Data Provider DispatchQueue
Closures
Asychronous operations.

3 mins

Swift
Try practice test

Medium

Property Observers
OOPs

2 mins

Swift
Try practice test

Medium

Class Destructor
OOPs

2 mins

Swift
Try practice test

Easy

Defer blocks

2 mins

Swift
Try practice test

Easy

Lazy Variables

2 mins

Swift
Try practice test

Medium

Completion Handlers
Views
Animations

2 mins

iOS
Try practice test

Medium

UI Responder Chain
UI
Views
Interaction.

3 mins

iOS
Try practice test

Medium

ViewController Buggy Code

3 mins

iOS
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
Data Provider DispatchQueue
Closures
Asychronous operations.
Swift
Medium3 mins
Try practice test
Property Observers
OOPs
Swift
Medium2 mins
Try practice test
Class Destructor
OOPs
Swift
Medium2 mins
Try practice test
Defer blocks
Swift
Easy2 mins
Try practice test
Lazy Variables
Swift
Easy2 mins
Try practice test
Completion Handlers
Views
Animations
iOS
Medium2 mins
Try practice test
UI Responder Chain
UI
Views
Interaction.
iOS
Medium3 mins
Try practice test
ViewController Buggy Code
iOS
Medium3 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 de Swift e iOS 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 de Swift e iOS 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 Swift & iOS Assessment Test

Why you should use Pre-employment Swift & iOS Online Test?

The Prueba de Swift e iOS 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:

  • Sintaxis rápida
  • Gestión de la memoria en Swift
  • Manejo de errores en Swift
  • Estructuras de datos en Swift
  • Redes en iOS
  • Diseño de interfaz de usuario en iOS
  • Marco de datos del núcleo
  • Concurrencia en iOS
  • Programación rápida
  • Integrar el código Swift con Objective-C

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 Swift & iOS Online Test?

  • sintaxis swift

    La sintaxis Swift se refiere a las reglas y la estructura del lenguaje de programación Swift. Aligue los diversos componentes, como variables, funciones, flujo de control y conceptos orientados a objetos que permiten a los desarrolladores escribir código eficiente y legible. Swift implica la gestión de la asignación y el desastre de recursos de memoria para garantizar un uso eficiente de la memoria y evitar fugas de memoria en las aplicaciones. Incluye conceptos como el recuento de referencias, la gestión de memoria automática con ARC (conteo automático de referencia) y referencias fuertes, débiles y sin propiedad.

  • Manejo de errores en Swift

    Manejo de errores en Swift Permite a los desarrolladores manejar, propagarse y recuperarse de los errores con gracia. Implica el uso de mecanismos como bloques de captura, errores de lanzamiento y captura, y manejar diferentes tipos de errores, como errores de tiempo de ejecución y errores específicos de dominio.

  • Estructuras de datos en Swift

    Las estructuras de datos en Swift representan la organización y el almacenamiento de datos en la memoria. Proporcionan formas eficientes de almacenar, acceder y manipular datos. Las estructuras de datos comunes incluyen matrices, diccionarios, pilas, colas y listas vinculadas.

  • redes en iOS

    Las redes en iOS implican la integración de la conectividad de red y la comunicación en aplicaciones iOS. Incluye conceptos como hacer solicitudes HTTP/HTTPS, manejo de datos de respuesta, implementar API RESTFUL y usar bibliotecas como Urlsession o Alamofire para operaciones de red. El diseño de la interfaz en iOS se centra en crear interfaces visualmente atractivas, intuitivas y fáciles de usar para aplicaciones iOS. Implica utilizar el marco UIKIT, diseñar diseños con restricciones y diseño automático, implementar interacciones de usuario e incorporar principios de diseño para proporcionar una experiencia de usuario perfecta.

  • Core Data Framework

    Los datos principales Framework en iOS proporciona un enfoque orientado a objetos para administrar la capa de modelo de una aplicación. Permite a los desarrolladores almacenar, recuperar y manipular datos como objetos, al tiempo que manejan relaciones de datos complejas y proporciona características como persistencia de datos, versiones y seguimiento automático de cambios.

  • concurrencia en iOS

    La concurrencia en iOS implica ejecutar simultáneamente múltiples tareas u operaciones para mejorar el rendimiento y la capacidad de respuesta de la aplicación. Incluye conceptos como múltiples lectura, gran envío central (GCD), colas de operaciones y técnicas de sincronización para administrar la ejecución concurrente y evitar las condiciones de carrera.

  • Programación Swift

    La programación Swift abarca las en general Conocimiento y competencia en el lenguaje rápido, cubriendo la sintaxis, las características del lenguaje, las mejores prácticas y las técnicas de desarrollo. Incluye la comprensión de conceptos como opciones, cierres, genéricos, protocolos y características de lenguaje avanzado que permiten a los desarrolladores escribir código rápido eficiente y mantenible.

  • 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 de Swift e iOS to be based on.

    Variables
    Constantes
    Opcional
    Flujo de control
    Funciones
    Cierre
    Clases
    Estructuras
    Enumeros
    Asignación de memoria
    Contado automático de referencia (ARC)
    Pérdidas de memoria
    Manejo de errores
    Manejo de excepciones
    Matrices
    Diccionarios
    Sets
    Listas vinculadas
    Pilas
    Colas
    Árboles binarios
    Gráficos
    Solicitudes HTTP
    API de reposo
    JSON PARSING
    Urlsession
    Alamofire
    Diseño automático
    Letrero
    Xib
    Vistas de la mesa
    Vistas de colección
    Conceptos básicos de datos
    Relación entre entidades
    Recuperacion de datos
    Actualización de datos
    Eliminar datos
    Múltiples lectura
    Grand Central Dispatch (GCD)
    Operación colas
    Grupos de envío
    Problemas de concurrencia
    Delegados
    Protocolos
    Extensiones
    Genéricos
    Herencia
    Polimorfismo
    Conjuntos de opciones
    Sobrecarga del operador
    Control de acceso
    Tipo de fundición
    Tuplas
    Manipulación de cuerdas
    Tipos de error
    Programación asincrónica
    Conceptos de redes
    Examen de la unidad
    Depuración
    Integración continua
    Prueba automatizada
    Documentación del código
    Administrador de paquetes Swift
Try practice test

What roles can I use the Swift & iOS Online Test for?

  • desarrollador de iOS
  • Desarrollador de aplicaciones móviles
  • Desarrollador rápido
  • ingeniero de iOS

How is the Swift & iOS 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

  • Prueba unitaria en Swift
  • Optimización del rendimiento en Swift
  • Múltiples lectura en iOS
  • Depuración y solución de problemas en iOS
  • Proceso de envío de la tienda de aplicaciones
  • Detección y prevención de fugas de memoria en Swift
  • Notificaciones locales y remotas en iOS
  • Mecanismos de almacenamiento en caché en iOS
  • Control de versiones de código usando Git
  • Internacionalización y localización en iOS

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

Swift & iOS 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 de Swift e iOS?
Ready to use the Adaface Prueba de Swift e iOS?
habla con nosotros
ada
Ada
● Online
✖️