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

      Qualcomm

      Empresa activa

      Información
      Opiniones
      Sueldos y beneficios
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Opiniones sobre Qualcomm | Ofertas de empleos en Qualcomm | Sueldos en Qualcomm | Beneficios en Qualcomm
      Entrevistas de QualcommEntrevistas para el puesto de Engineer, Staff-Machine Learning-Embedded and C++ en QualcommEntrevista de Qualcomm


      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
      Honeywell
      4.0★Remuneración y beneficios
      avatar
      Apple
      4.2★Remuneración y beneficios
      avatar
      DONE by NONE
      3.8★Remuneración y beneficios
      avatar
      HubSpot
      3.6★Remuneración y beneficios

      Entrevista de Engineer, Staff-Machine Learning-Embedded and C++

      16 may 2026
      Candidato de entrevista anónimo
      Hyderabad
      Sin oferta
      Experiencia positiva
      Entrevista difícil

      Solicitud

      Solicité el puesto a través de la recomendación de un empleado. Acudí a una entrevista en Qualcomm (Hyderabad) en may 2026

      Entrevista

      In the first round question in C, OS, Data Structures and Algortihms were asked. I didn't clear first round. The interview was difficult and they were expecting C++ knowledge also apart from C

      Preguntas de entrevista [7]

      Pregunta 1

      1. Int a = 10; Static int b; Fun() { int a; printf("%d", a); } Where do the various variable go in memory segment
      Responder pregunta

      Pregunta 2

      2. Fun() { int *ptr = NULL; load_ptr(&ptr); } Load_ptr(int **ptr) { *ptr = malloc(1024); } This example where double pointer is useful, if don't use double pointer then it would be difficult to assign memory to ptr in load_ptr.
      Responder pregunta

      Pregunta 3

      Find the Kth max value in constant array. The array is very big so if we create a separate array for sorting then it would take lot of memory. This answer we have to min max heaps.
      Responder pregunta

      Pregunta 4

      Using random() in C generate random numbers between a given range say[a,b]: (a + (random()*(b-a))) is the answer
      Responder pregunta

      Pregunta 5

      Find the equlibrium point in array eg: arr[5] = {1,3,8,2,2} if we see index 2 which has 8 is equilibrium point since 4 and 4 on either side, so we need to return index i.e 2 if no equlibrium point then return -1.
      Responder pregunta

      Pregunta 6

      You have created a module and you have fixed all memory leaks using valgrind, but in production this module is generating out of memory error. This answer is we are malloc ing small small values and freeing this is creating memory fragmentation due to which memory allocation to get contiguous memory is failing.
      Responder pregunta

      Pregunta 7

      Explain page fault, virtual memory and who handle page faults.
      Responder pregunta