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

      Flipkart

      Parte da empresa Walmart

      Empresa engajada

      Sobre
      Avaliações
      Remuneração e benefícios
      Vagas
      Entrevistas
      Entrevistas
      Buscas relacionadas: Avaliações da empresa Flipkart | Vagas da empresa Flipkart | Salários da empresa Flipkart | Benefícios da empresa Flipkart
      Entrevistas da empresa FlipkartEntrevistas do cargo de Software Development Engineer I da empresa FlipkartEntrevista da empresa Flipkart


      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.

      Entrevista para Software Development Engineer I

      19 de abr. de 2021
      Funcionário(a) sigiloso(a)
      Bengaluru
      Oferta aceita
      Experiência positiva
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me de outra forma. O processo levou 4 dias. Fui entrevistado pela Flipkart (Bengaluru) em fev. de 2021

      Entrevista

      applied through linkedin connection referral. Due to the pandemic, all the interview rounds were conducted virtually. interview comprises of 4 rounds .1st round was machine coding, followed by two technical and one managerial round.

      Perguntas de entrevista [5]

      Pergunta 1

      Round 1 (Machine Coding Round)(90 mins): Give a brief about your projects Problem statement: Digital wallet implementation There are several functionalities need to be implemented. All the test cases should pass. functionalities to implement: --> create wallet(accountholder, amount) //creates wallet and initialise balance --> transferMoney(acc1, acc2, amount) // transfer money from acc1 to acc2 --> statement(acc) // type of transfer(credit/debit), fromacc/toacc, amount --> offer1 --> acc_bal1 == acc_bal2 // after transaction if both acc bal are equal, then both are credited with 10/- --> offer2 --> 3 top customers --> 10 , 5, 2 (no of trans, acc_bal, creation_time) // top3 customers based on priority mentioned gets 10/-,5/-,2/- --> Overview(acc[]) // accholer, balance of all the customers After executing, interviewer asks for code walkthrough. PFA my answer for above problem.
      Responder à pergunta

      Pergunta 2

      Round2 (PSDS Round)(60mins): Problem 1 - Given a set of unique elements, print the power set. For eg- {1, 2, 3} Power set will be - {{}, {1}, {2}, {3}, {1,2}, {2,3}, {1,3}, {1,2,3}} ---> have coded using recursion. ---> need to dry run the code for above test case.
      Responder à pergunta

      Pergunta 3

      Problem 2 - Given a tree, each node of the tree has some coins you need to collect the maximum number of coins such that you do not collect coins from any alternate nodes. i.e if you collect coins from a node, you can not collect from any of it's adjacent node. eg - 1 / \ 5 6 / \ / \ 2 1 9 4 / \ 3 1 (5 + 3 + 9 + 4) = 21 given dfs approach dp on trees
      Responder à pergunta

      Pergunta 4

      Problem 3 - Given a string, find the maximum length substring having at max k unique characters. eg - abcaacabcabcaa k=2 ans =5 (caaca) given two pointer approach and hashmap sliding window
      Responder à pergunta

      Pergunta 5

      Round 3(Hiring Manager Round)(45mins): 1. Tell me about yourself 2. About projects 3. challenges faced 4. why are you looking for a change
      Responder à pergunta
      16

      Outras avaliações de entrevista de vagas de Software Development Engineer I da empresa Flipkart

      Entrevista para Software Development Engineer

      18 de mai. de 2024
      Candidato(a) sigiloso(a) à entrevista
      Nenhuma oferta
      Experiência positiva
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me online. O processo levou 5 dias. Fui entrevistado pela Flipkart em mai. de 2024

      Entrevista

      I was good . There were 2 interviewers and they both were very friendly. I gave online assessment for flipkart and then called for 2 round that was problem solving and data structure round. It was overall a nice experience.

      Perguntas de entrevista [1]

      Pergunta 1

      Dsa question of Distribution of candies
      Responder à pergunta

      Entrevista para Software Development Engineer I

      26 de jul. de 2023
      Funcionário(a) sigiloso(a)
      Bengaluru
      Oferta aceita
      Experiência positiva
      Entrevista difícil

      Candidatura

      Candidatei-me por indicação de um funcionário. Fui entrevistado pela Flipkart (Bengaluru) em mai. de 2022

      Entrevista

      Interview was smooth. Whole process was completed in a day Had 3 rounds. 1st Round was LLD. 2nd Round: 4 medium level question DS/Algo questions 3rd Round : Managerial round

      Perguntas de entrevista [1]

      Pergunta 1

      Had 3 rounds. 1st Round was LLD. 2nd Round: 4 medium level question DS/Algo questions 3rd Round : Managerial round
      Responder à pergunta
      1

      Entrevista para Software Development Engineer

      20 de mar. de 2022
      Funcionário(a) sigiloso(a)
      Oferta aceita
      Experiência positiva
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me por indicação de um funcionário. O processo levou 2 dias. Fiz uma entrevista na empresa Flipkart.

      Entrevista

      Three rounds post coding test. First-round is machine coding. The rest 2 are Data Structures algo. Post that Hiring Manager round. Machine coding round is where you try to design a system, the test is mostly around system understanding and oops concepts.

      Perguntas de entrevista [1]

      Pergunta 1

      Not to discuss questions but array and trees bases questions
      Responder à pergunta

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

      avatar
      Amazon
      3.7★Remuneração e benefícios
      avatar
      Google
      4.5★Remuneração e benefícios
      avatar
      Meta
      4.6★Remuneração e benefícios
      avatar
      Booking.com
      4.2★Remuneração e benefícios