Desarrollador Web Interview Questions

Desarrollador Web Interview Questions

Las entrevistas para el puesto de desarrollador web suelen centrarse en las preguntas técnicas. Puedes esperar que te hagan preguntas para evaluar tu conocimiento de los principales lenguajes de programación, como JavaScript y CSS, y de las funciones web generales, o para conocer tu experiencia de diseño en servicios web como REST y SOAP. Como desarrollador, es probable que te pidan ejemplos de sitios web o proyectos anteriores.

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

Question 1

Pregunta n.º 1: ¿Podrías describir los lenguajes de programación y servicios web más populares?

How to answer
Respuesta recomendada: Con casi total seguridad, te preguntarán sobre lenguajes de programación y servicios web. Asegúrate de estar al día de los últimos lenguajes y servicios, incluidas las innovaciones y actualizaciones más recientes.
Question 2

Pregunta n.º 2: ¿Cómo te describirían los jefes de proyecto y otros desarrolladores web?

How to answer
Respuesta recomendada: Los empleadores quieren asegurarse de que encajarás bien con el resto del equipo de desarrollo. Si te formulan esta pregunta, destaca tu capacidad de trabajo en equipo. Puedes comentar tus dotes de comunicación, tus habilidades de escucha y tu capacidad para resolver conflictos.
Question 3

Pregunta n.º 3: ¿Cómo sueles resolver los problemas de código?

How to answer
Respuesta recomendada: El empleador quiere asegurarse de que tienes la capacidad para resolver cualquier problema de programación, de manera que puedas ser un miembro productivo de la plantilla. Comenta tus habilidades de resolución de problemas, tanto en el ámbito de la programación como de las relaciones en el lugar de trabajo; así demostrarás tu capacidad para superar dificultades en el trabajo. Puedes exponer tus habilidades analíticas, hablar de colaboraciones pasadas y explicar tu experiencia resolviendo problemas en proyectos anteriores.

710,010 desarrollador web 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)

In front of you are three light switches. Only one does anything, and it turns on the light downstairs. From here you can't see the light, and it makes no sound. You must determine which switch operates the light, BUT you can only go check it once. How do you figure out which switch is for the light?
avatar

Software Engineer

Interviewed at RTX

3.8
Mar 12, 2010

In front of you are three light switches. Only one does anything, and it turns on the light downstairs. From here you can't see the light, and it makes no sound. You must determine which switch operates the light, BUT you can only go check it once. How do you figure out which switch is for the light?

Viewing 21 - 30 interview questions

Glassdoor has 710,010 interview questions and reports from Desarrollador web interviews. Prepare for your interview. Get hired. Love your job.