Ir para o conteúdoIr para a pasta
  • Vagas
  • Empresas
  • Salários
  • Para empresas

      Avance em sua carreira

      Descubra qual pode ser seu salário, conquiste a vaga dos seus sonhos e compartilhe insights de qualidade de vida com sigilo.

      employer cover photo
      employer logo
      employer logo

      BITSILICA

      Essa empresa é sua?

      Sobre
      Avaliações
      Remuneração e benefícios
      Vagas
      Entrevistas
      Entrevistas
      Buscas relacionadas: Avaliações da empresa BITSILICA | Vagas da empresa BITSILICA | Salários da empresa BITSILICA | Benefícios da empresa BITSILICA
      Entrevistas da empresa BITSILICAEntrevistas do cargo de Embedded Software Engineer da empresa BITSILICAEntrevista da empresa BITSILICA


      Glassdoor

      • Sobre
      • Prêmios
      • Blog
      • Fale conosco

      Empresas

      • Conta gratuita de empresa
      • Área da empresa
      • Blog para empresas

      Informações

      • Ajuda
      • Regras da Comunidade
      • Termos de Uso
      • Privacidade e opções de anúncios
      • Não venda nem compartilhe minhas informações
      • Ferramenta de consentimento de uso de cookies

      Trabalhe conosco

      • Anunciantes
      • Carreiras
      Baixe o aplicativo:

      • Busque por:
      • Empresas
      • Vagas
      • Localizações

      Copyright © 2008-2026. Glassdoor LLC. “Glassdoor”, “Worklife Pro”, “Bowls” e o logotipo do Glassdoor são marcas comerciais pertencentes à Glassdoor LLC.

      Empresas seguidas

      Fique por dentro de todas as oportunidades e dicas internas seguindo as empresas de seus sonhos.

      Buscas de vagas

      Comece a buscar vagas para receber atualizações e recomendações personalizadas.

      As melhores empresas na categoria “Remuneração e benefícios” perto de você

      avatar
      Apple
      4.2★Remuneração e benefícios
      avatar
      Honeywell
      4.0★Remuneração e benefícios
      avatar
      DONE by NONE
      3.8★Remuneração e benefícios
      avatar
      Fortinet
      3.6★Remuneração e benefícios

      Entrevista para Embedded Software Engineer

      2 de jul. de 2025
      Candidato(a) sigiloso(a) à entrevista
      Bengaluru
      Nenhuma oferta
      Experiência positiva
      Entrevista com nível médio de dificuldade

      Candidatura

      Fiz uma entrevista na empresa 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++

      Perguntas de entrevista [1]

      Pergunta 1

      Arrange the array elements in ascending and descending oreders
      Responder à pergunta

      Outras avaliações de entrevista de vagas de Embedded Software Engineer da empresa BITSILICA

      Entrevista para Embedded Software Engineer

      17 de dez. de 2025
      Candidato(a) sigiloso(a) à entrevista
      Hyderābād
      Oferta recusada
      Experiência neutra
      Entrevista fácil

      Candidatura

      Fiz uma entrevista na empresa BITSILICA (Hyderābād).

      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

      Perguntas de entrevista [1]

      Pergunta 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 à pergunta

      Entrevista para Embedded Software Engineer

      27 de nov. de 2025
      Candidato(a) sigiloso(a) à entrevista
      Hyderābād
      Nenhuma oferta
      Experiência positiva
      Entrevista difícil

      Candidatura

      Fiz uma entrevista na empresa BITSILICA (Hyderābād).

      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

      Perguntas de entrevista [1]

      Pergunta 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 à pergunta