Desarrollador De Software Interview Questions

Desarrollador De Software Interview Questions

El desarrollo de software es una trayectoria profesional muy demandada, y también es un puesto que puede ofrecer oportunidades de altos ingresos y de realización profesional. A la hora de realizar una entrevista para un puesto de desarrollador de software, es probable que te hagan preguntas sobre tus habilidades técnicas y sociales, y sobre cómo sueles gestionar los proyectos para asegurar su eficiencia.

Preguntas de entrevista más frecuentes para desarrollador/a de software y cómo responderlas

Question 1

Pregunta n.º 1: ¿A qué tipo de desarrollo de software te dedicas actualmente?

How to answer
Respuesta recomendada: Al responder a esta pregunta sobre tus proyectos de desarrollo de software en curso, no olvides mencionar los lenguajes de programación y las tecnologías que utilizas. Esta pregunta ayuda a determinar si posees las habilidades necesarias para gestionar la carga de trabajo.
Question 2

Pregunta n.º 2: Describe un problema de desarrollo al que hayas tenido que hacer frente y explica cómo lograste solucionarlo.

How to answer
Respuesta recomendada: Describir una situación concreta te permitirá explicar tus métodos de resolución de problemas y las medidas que adoptaste para resolver el problema. Utiliza el método STAR (Situación, Tarea, Acción, Resultado) para ofrecer una descripción clara del problema y de la solución.
Question 3

Pregunta n.º 3: ¿Cómo sueles abordar el proceso de QA?

How to answer
Respuesta recomendada: El aseguramiento de la calidad o QA (del inglés, Quality Assurance) es un aspecto importante del desarrollo de software. En organizaciones pequeñas que no dispongan de un equipo de QA específico, esta tarea podría corresponder a los desarrolladores de software. Si te hacen alguna pregunta sobre el proceso de QA, es posible que se intente determinar si estarías dispuesto y serías capaz de asumir las tareas de pruebas y de corrección de errores de programación como parte de tus funciones.

665,258 desarrollador de software interview questions shared by candidates

Question was "Given a pattern and a string input - find if the string follows the same pattern and return 0 or 1. Examples: 1) Pattern : "abba", input: "redblueredblue" should return 1. 2) Pattern: "aaaa", input: "asdasdasdasd" should return 1. 3) Pattern: "aabb", input: "xyzabcxzyabc" should return 0.
avatar

Software Engineer

Interviewed at Dropbox

3.9
Oct 18, 2014

Question was "Given a pattern and a string input - find if the string follows the same pattern and return 0 or 1. Examples: 1) Pattern : "abba", input: "redblueredblue" should return 1. 2) Pattern: "aaaa", input: "asdasdasdasd" should return 1. 3) Pattern: "aabb", input: "xyzabcxzyabc" should return 0.

Given an input string S write a function which returns true if it satisfies S = nT. Basically you have to find if a given string can be represented from a substring by iterating it “n” times. n >= 2 An example would suffice – Function should return true if 1) S = “abab” 2) S = “abcdabcd” 3) S = “abcabcabc” 4) S = “zzxzzxzzx” Function should return false if 1) S = “abac” 2) S = “abcdabbd” 3) S = “abcabcefg” 4) S = “zzxzzyzzx” It would be easy to understand if you can give an algo instead of saying use kmp or suffix tree or… I came up with O(n*n) solution. Wondered how to do in O(n)
avatar

Software Engineer

Interviewed at Google

4.4
Mar 19, 2014

Given an input string S write a function which returns true if it satisfies S = nT. Basically you have to find if a given string can be represented from a substring by iterating it “n” times. n >= 2 An example would suffice – Function should return true if 1) S = “abab” 2) S = “abcdabcd” 3) S = “abcabcabc” 4) S = “zzxzzxzzx” Function should return false if 1) S = “abac” 2) S = “abcdabbd” 3) S = “abcabcefg” 4) S = “zzxzzyzzx” It would be easy to understand if you can give an algo instead of saying use kmp or suffix tree or… I came up with O(n*n) solution. Wondered how to do in O(n)

Viewing 11 - 20 interview questions

Glassdoor has 665,258 interview questions and reports from Desarrollador de software interviews. Prepare for your interview. Get hired. Love your job.