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

      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

      Bloomberg

      Empleador activo

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de Bloomberg | Empleos en Bloomberg | Sueldos en Bloomberg | Prestaciones en Bloomberg
      Entrevistas en BloombergEntrevistas para el cargo de Senior Software Developer C++ en BloombergEntrevista en Bloomberg


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empleadores

      • Cuenta de empleador gratuita
      • Centro de empleador

      Información

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

      Trabaja con nosotros

      • Anunciantes
      • Oportunidades laborales
      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 desde adentro.

      Búsquedas de empleo

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

      Las mejores empresas en cuanto a "Remuneración y prestaciones" cerca de ti

      avatar
      Salesforce
      4.4★Remuneración y prestaciones
      avatar
      SAP
      3.9★Remuneración y prestaciones
      avatar
      Capgemini
      3.7★Remuneración y prestaciones
      avatar
      NiCE
      3.6★Remuneración y prestaciones

      Entrevista para Senior Software Developer C++

      11 de ago de 2014
      Candidato de entrevista anónimo
      New York, NY

      Otras evaluaciones sobre las entrevistas para el cargo de Senior Software Developer C++ en Bloomberg

      Entrevista para Senior C++ Developer

      19 de ago de 2015
      Candidato de entrevista anónimo
      New York, NY
      Sin ofertas
      Sin ofertas
      Entrevista fácil

      Solicitud

      Me postulé en línea. Acudí a una entrevista en Bloomberg (New York, NY) en jul 2014

      Entrevista

      I applied online, then they contacted me by mail to set-up phone interview, it took about 1 hr, the interview was with one developer, we use online coding tool where he was watching what i was writing like pair programming, he asked me to write code in C++ the task was easy but I did not perform well

      Preguntas de entrevista [1]

      Pregunta 1

      well all questions are expected, string reverse without reversing words for example " this is sentence" => "sentence is this", write c++ code to do so
      2 respuestas
      Experiencia neutra
      Entrevista promedio

      Solicitud

      Me postulé en línea. El proceso tomó 1 día. Acudí a una entrevista en Bloomberg (New York, NY) en jul 2015

      Entrevista

      I applied on the company website. I got email for the telephonic interview a very next day. The interview lasted for 1 hr. It went very well. But never heard back from them.

      Preguntas de entrevista [1]

      Pregunta 1

      The interviewer asked me about copy constructor and assignment operator, what is the difference?
      Responder pregunta

      Entrevista para Senior Software Engineer C++

      5 de ene de 2014
      Candidato de entrevista anónimo
      Londres, Inglaterra
      Sin ofertas
      Experiencia positiva
      Entrevista difícil

      Solicitud

      Me postulé a través de un reclutador. El proceso tomó 3 semanas. Acudí a una entrevista en Bloomberg (Londres, Inglaterra) en may 2013

      Entrevista

      I was initially approached by recruitment agency, for which I needed to do an IKM C++ test for screening. I'm not sure if this is what Bloomberg demanded of them or not. After that followed a standard phone interview with an engineer from Bloomberg. I lasted more than half an hour and appart from standard who we are/who I am questions, it mainly consisted of C++ trivia: - what is a pointer, - what is extern C, - what is virtual function, - what is singleton and how would you implement it, - what is const, - what is mutable, - stack/static/heap memory, and so on. They were satisfied with my answers so I got to face-to-face interview in their London office two weeks after phone screening. Two Bloomberg engineers met me. They were some project/team managers. They offered me coffee from their cafeteria, but I politely declined. They took some for themselves and we proceeded to an office with glass walls. One of the interviewers was fairly quiet the whole time and looked a bit annoyed, while the other one was really friendly and helpful. The friendly one admitted at the beginning that he had not even looked at my CV. He had a couple of sheets of paper and selected few questions from them. The whole interview lasted for about an hour. 1. Question: char abc[27]. char* ptr = abc strcpy(abc,"abcdefg") What are data types and values of following: abc[3] &abc[3] *abc abc + 2 abc[6] abc[7] abc[8] *ptr &abc ptr + 3 (and similar) 2. Question: Base { public: void foo() {} } Derived : public Base { void foo() {} } What does this program do, line by line: Base b; Derived d; b.foo(); d.foo(); Base* bb = &d bb->foo(); Derived* dd = &b dd->foo(); 3. Question: Write on paper a function in C++ that will reverse the order of words in string without using O(n) memory for this. So "write reversing order function" should become "function order reversing write". 4. Question: do a code review: char* addnewline(char* s) { char buffer[1024] strcpy(buffer,s) buffer[strlen(s)-1] = '\n' return buffer; } Then he was using my code review comments for follow up debate: What is auto keyword? What is the opposite of auto? Where in memory are static variables located. Where in memory are located variables, that are declared outside of any function?

      Preguntas de entrevista [1]

      Pregunta 1

      I completely froze on following question which could be useful in a function that reverses order of words. How would you move a chunk of memory in C++/C?
      2 respuestas
      10