Aller au contenuAller au pied de page
  • Emplois
  • Entreprises
  • Salaires
  • Pour les employeurs

      Boostez votre carrière

      Découvrez votre salaire potentiel, décrochez des emplois de rêve et partagez vos témoignages de manière anonyme.

      employer cover photo
      employer logo
      employer logo

      Qualcomm

      Employeur impliqué

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur Qualcomm | Offres d’emploi chez Qualcomm | Salaires chez Qualcomm | Avantages sociaux chez Qualcomm
      Entretiens chez QualcommEntretiens d’embauche pour Engineer, Staff-Machine Learning-Embedded and C++ chez QualcommEntretien chez Qualcomm


      Glassdoor

      • À propos
      • Récompenses
      • Blog
      • Nous contacter
      • Guides

      Employeurs

      • Compte employeur gratuit
      • Centre employeur
      • Blog pour les employeurs

      Informations

      • Aide
      • Règles de la communauté
      • Conditions d'utilisation
      • Confidentialité et choix publicitaires
      • Ne pas vendre ni partager mes informations
      • Outil de consentement aux cookies

      Travailler avec nous

      • Annonceurs
      • Carrières
      Télécharger l'application

      • Parcourir par :
      • Entreprises
      • Emplois
      • Lieux

      Copyright © 2008-2026. Glassdoor LLC. « Glassdoor », son logo, « Worklife Pro » et « Bowls » sont des marques déposées de Glassdoor LLC.

      Entreprises suivies

      Tenez-vous au courant des dernières opportunités et profitez de conseils d’initiés en suivant les entreprises de vos rêves.

      Recherche d’emplois

      Obtenez des recommandations et des mises à jour personnalisées en démarrant vos recherches.

      Meilleures entreprises pour « Rémunération et avantages » près de chez vous

      avatar
      Intel Corporation
      3.7★Rémunération et avantages
      avatar
      Apple
      4.2★Rémunération et avantages
      avatar
      Lenovo
      3.8★Rémunération et avantages
      avatar
      Honeywell
      4.0★Rémunération et avantages

      Entretien pour Engineer, Staff-Machine Learning-Embedded and C++

      16 mai 2026
      Candidat à l'entretien anonyme
      Hyderâbâd
      Aucune offre
      Expérience positive
      Entretien difficile

      Candidature

      J'ai postulé via la recommandation d'un employé. J'ai passé un entretien chez Qualcomm (Hyderâbâd) en mai 2026

      Entretien

      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

      Questions d'entretien [7]

      Question 1

      1. Int a = 10; Static int b; Fun() { int a; printf("%d", a); } Where do the various variable go in memory segment
      Répondre à cette question

      Question 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.
      Répondre à cette question

      Question 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.
      Répondre à cette question

      Question 4

      Using random() in C generate random numbers between a given range say[a,b]: (a + (random()*(b-a))) is the answer
      Répondre à cette question

      Question 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.
      Répondre à cette question

      Question 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.
      Répondre à cette question

      Question 7

      Explain page fault, virtual memory and who handle page faults.
      Répondre à cette question