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

      BITSILICA

      ¿Esta es tu empresa?

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de BITSILICA | Empleos en BITSILICA | Sueldos en BITSILICA | Prestaciones en BITSILICA
      Entrevistas en BITSILICAEntrevistas para el cargo de Embedded Software Engineer en BITSILICAEntrevista en BITSILICA


      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.

      Entrevista para Embedded Software Engineer

      17 dic 2025
      Candidato de entrevista anónimo
      Hyderabad

      Otras evaluaciones sobre las entrevistas para el cargo de Embedded Software Engineer en BITSILICA

      Entrevista para Embedded Software Engineer

      27 nov 2025
      Candidato de entrevista anónimo
      Hyderabad
      Sin ofertas
      Oferta rechazada
      Experiencia neutra
      Entrevista fácil

      Solicitud

      Acudí a una entrevista en BITSILICA (Hyderabad)

      Entrevista

      Overall they are understanding whether you are able to do programming skill approach or not and are not expecting the memorised answers; they are asking for the reason they are covering over all in embedded systems

      Preguntas de entrevista [1]

      Pregunta 1

      self intro microcontroller boot flow os boot flow what is interrupt what is volatile what is static keyword what is ipc mechanism(what are they) toggle bit real time scenarios for pipe message queue and sharedmemory mutex and semaphore difference what is kernel moudle what is insmod what is modprobe in uboot level what modifications u done in yocto u worked how to do menuconfig mutex and sempahore realtime scenario how u will check module loaded or not what is device tree device tree (example given) and ask their properites how u done in ur project(project realted dts)| what is sysfs how communication happing blw user space and kernel space if one module depening on other module depend(how to load) what is i2c detect (u used it) isr_handler function what happens what is /dev
      Responder pregunta
      Experiencia positiva
      Entrevista difícil

      Solicitud

      Acudí a una entrevista en BITSILICA (Hyderabad)

      Entrevista

      first online round with medium level of difficulty questions based especially on c DSA and micro controllers, next in-person interview with 2 rounds initially aptitude and C next inperson interview with C and Microcontroller based questions

      Preguntas de entrevista [1]

      Pregunta 1

      # Round 1 Aptitude and C # //BITSILICA round 2 1)Spiral matrix print from top right #include int main() { int m,n; printf("Enter Array Size m x n: "); scanf("%d %d",&m,&n); int arr[m][n]; printf("Enter array Elements: \n"); for(int i = 0; i < m; i++){ for(int j =0; j < n; j++){ scanf("%d",&arr[i][j]); } } for(int i = 0; i < m; i++){ for(int j =0; j < n; j++){ printf("%d ",arr[i][j]); } printf("\n"); } printf("\n"); // spiral int top = 0; int bottom = m-1; int left = 0; int right = n-1; while(top <= bottom && left <= right){ for(int i = right; i >=left; i--){ printf("%d ",arr[top][i]); } top++; for(int i = top; i <= bottom; i++){ printf("%d ",arr[i][left]); } left++; if(top <= bottom){ for(int i = left; i <= right; i++){ printf("%d ",arr[bottom][i]); } bottom--; } if(left <= right){ for(int i = bottom; i >= top; i--){ printf("%d ",arr[i][right]); } right--; } } return 0; } 2) dynamically allocate memory for 2D array using calloc 3) How is a process created? 4) explain about memory segments? 5) Why 4 memory segments, why cant we store all in 1 segment itself? 6) do you know about LPC microcontroller? 7) How to connect SD card to an MC? 8) Real time usage of SPI 9) do you know about GDB 10) Explain about all variable qualifiers and their scope. 11) difference between malloc and calloc 12) Explain how interrupt works? 13) where is isr located? 14) what is interrupt latency?
      Responder pregunta

      Entrevista para Embedded Software Engineer

      2 jul 2025
      Candidato de entrevista anónimo
      Bengaluru
      Sin ofertas
      Experiencia positiva
      Entrevista promedio

      Solicitud

      Acudí a una entrevista en BITSILICA (Bengaluru)

      Entrevista

      written test - mcq s and c programs , technical 1 - c , data structure programs-reverse the liked list ,removal of duplicates , common element in array , Technical round 2 - linux , c , c++

      Preguntas de entrevista [1]

      Pregunta 1

      Arrange the array elements in ascending and descending oreders
      Responder pregunta