Ir al contenidoIr al pie de página
  • Empleos
  • Empresas
  • Sueldos
  • Para empresas

      Impulsa tu carrera profesional

      Averigua cuánto podrías ganar, encuentra el empleo perfecto y comparte información sobre tu vida laboral y personal de forma anónima.

      employer cover photo
      employer logo
      employer logo

      Goldman Sachs

      ¿Esta es tu empresa?

      Información
      Opiniones
      Sueldos y beneficios
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Opiniones sobre Goldman Sachs | Ofertas de empleos en Goldman Sachs | Sueldos en Goldman Sachs | Beneficios en Goldman Sachs
      Entrevistas de Goldman SachsEntrevistas para el puesto de Technology Division en Goldman SachsEntrevista de Goldman Sachs


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empresas

      • Cuenta gratuita de empresa
      • Centro de empresas

      Información

      • Ayuda
      • Normas
      • Condiciones de uso
      • Privacidad y opciones de anuncios
      • No vender ni compartir mi información
      • Herramienta de consentimiento de cookies

      Trabaja con nosotros

      • Anunciantes
      • Empleo
      Descargar aplicación

      • Buscar por:
      • Empresas
      • Empleos
      • Ubicaciones

      Copyright © 2008-2026. Glassdoor LLC. «Glassdoor», «Worklife Pro», «Bowls» y sus logotipos son marcas comerciales registradas de Glassdoor LLC.

      Empresas seguidas

      Sigue a tus empresas favoritas para estar al tanto de las últimas oportunidades y disponer de información de primera mano.

      Búsquedas de empleo

      Recibe recomendaciones y actualizaciones personalizadas al iniciar tu búsqueda.

      Las mejores empresas en cuanto a «Remuneración y beneficios» cerca de ti

      avatar
      Citi
      3.6★Remuneración y beneficios
      avatar
      Natixis
      3.8★Remuneración y beneficios
      avatar
      Allianz
      3.6★Remuneración y beneficios
      avatar
      BMO Financial Group
      3.5★Remuneración y beneficios

      Entrevista de Technology Division

      17 jul 2015
      Candidato de entrevista anónimo
      New York, NY

      Otras opiniones sobre las entrevistas para el puesto de Technology Division en Goldman Sachs

      Entrevista de Technology Division

      24 ene 2018
      Candidato de entrevista anónimo
      Sin oferta
      Experiencia negativa
      Entrevista normal

      Solicitud

      Envié una solicitud electrónica. Acudí a una entrevista en Goldman Sachs en ene 2018

      Sin oferta
      Experiencia negativa
      Entrevista fácil

      Solicitud

      Solicité el puesto a través de la escuela superior o la universidad. El proceso duró 4 semanas. Acudí a una entrevista en Goldman Sachs (New York, NY) en mar 2015

      Entrevista

      Submitted resume online and was called for an on campus interview. On campus interview was quite straight forward, two interviews (one on one); one behavioral and more about fit, the other technical. The technical one was about how you might write a code to schedule someone's day. Not really any right or wrong answer, it seemed like the interviewer just wanted to know how I thought. Both interviewers were very friendly and made me feel comfortable. Second round was at the NJ office. Two interviews (two on one this time) and again one behavioral and one about fit. Both interviews were really uncomfortable. In the more technical interview, I was asked the question about coins (below), started explaining that I'd do it using the method they wanted, was told I was wrong by the interviewer... and so explained it again, only to have the interviewer tell me I was wrong and then proceed to repeat exactly what I had just said. A lot of "why do you want to work here" questions.

      Preguntas de entrevista [1]

      Pregunta 1

      You have 8 coins, one of which is lighter than the rest, and a scale one which you can weigh two things against each other. You can use the scale 3 times, determine which coin is lighter than the rest.
      2 respuestas
      El proceso duró 3 días. 

      Entrevista

      One hour interview: an explanation of the team, general questions about my knowledge of skills listed on my resume, 2 technical questions (the first simple, the second more involved), then time for me to ask questions.

      Preguntas de entrevista [2]

      Pregunta 1

      Implement a run length encoding function. For a string input the function returns output encoded as follows: "a" -> "a1" "aa" -> "a2" "aabbb" -> "a2b3" "aabbbaa" -> "a2b3a2" "" -> ""
      Responder pregunta

      Pregunta 2

      Group Anagrams 1) Given a list of words, group them by anagrams Input: List of "cat", "dog", "god" Output: A Set of Sets of anagrams: {{'cat'}, {'dog', 'god'}} 2) Run this code in the REPL to observe its behaviour. The execution entry point is main(). 3) Consider adding some additional tests in doTestsPass(). 4) Implement the AnagramSolution group() method correctly. 5) If time permits, try to improve your implementation.
      Responder pregunta
      2