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

      BMAT

      Est-ce votre entreprise ?

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur BMAT | Offres d’emploi chez BMAT | Salaires chez BMAT | Avantages sociaux chez BMAT
      Entretiens chez BMATEntretiens d’embauche pour Python Software Engineer chez BMATEntretien chez BMAT


      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.

      Entretien pour Python Software Engineer

      28 oct. 2024
      Employé (anonyme)
      Offre acceptée
      Expérience positive
      Entretien facile

      Autres retours d’entretien d’embauche pour un poste comme Python Software Engineer chez BMAT

      Entretien pour Python Developer

      17 déc. 2024
      Candidat à l'entretien anonyme
      Aucune offre
      Expérience neutre
      Entretien moyen

      Candidature

      J'ai postulé via une autre source. Le processus a pris 2 semaines. J'ai passé un entretien chez BMAT en oct. 2024

      Entretien

      The interview process consists of several steps: - A cognitive interview with an HR representative, which included a set of technical questions defined by the technical team. - A live coding challenge. - An interview with the technical team. - A final interview with the HR representative, who explained the next steps in the hiring process.

      Questions d'entretien [2]

      Question 1

      They asked me to describe my professional journey.
      Répondre à cette question

      Question 2

      They asked me to read a document containing a code challenge and, as the first step, to implement it quickly, and then to prepare it for production.
      Répondre à cette question

      Candidature

      J'ai postulé en ligne. J'ai passé un entretien chez BMAT en déc. 2024

      Entretien

      The process was confusing, I never knew what they needed or why they didn’t move forward with the position. On top of that, they made me wake up very early for an interview, and there was no feedback.

      Questions d'entretien [1]

      Question 1

      They asked me questions that had nothing to do with what I know about Python.
      Répondre à cette question

      Entretien pour Python Developer

      6 nov. 2024
      Candidat à l'entretien anonyme
      Homer Glen, IL
      Aucune offre
      Expérience neutre
      Entretien moyen

      Candidature

      J'ai postulé en ligne. Le processus a pris 3 semaines. J'ai passé un entretien chez BMAT (Homer Glen, IL) en oct. 2024

      Entretien

      First talk with the HR who makes you screening questions about python: methods for list, set, GIL, multiprocessing, async functions, enumerate... Not very hard but be prepared for some deeper python knowledge. After 2 weeks I had a Live coding challenge which consisted to parse a list of strings: lines = [ >>> "HD,AmazonMusicX.SAL,20220101" , >>> "SY,sy1,Andorra,202201" , >>> "SY,sy2,Italy,202202" , >>> "TR,tr1,sy1" , >>> "SR,sr42,tr1,Umbrella" , >>> "AR,a42,Rihanna" , >>> "CM,c42,Stewart Christopher" , >>> "SL,sl1,10,2.0" , >>> "TR,tr2,sy2" , >>> "SR,sr56,tr2,In The End" , >>> "CM,c48,Shinoda Mike" , >>> "SL,sl2,20,1.0" , >>> "AR,a48,Linkin Park" , >>> "CM,c49,Delson Brad" , >>> "SR,sr67,tr2,La Jumpa" , >>> "SL,sl3,25,3.0" , >>> "AR,a47,Bad Bunny" , >>> "AR,a49,Arcángel" , >>> "FT,2,55,115.0,20220101" , into a nested dict: [ { "filename" : "AmazonMusicX.SAL" , "timestamp" : "20220101" }, { "sr_id" : "sr42" , "summary" : { "id" : "sy1" , "territory" : "Andorra" , "period" : "202201" }, "metadata" : { "title" : "Umbrella" , "artists" : [{ "artist_id" : "a42" , "name" : "Rihanna" }], "composers" : [{ "composer_id" : "c42" , "name" : "Stewart Christopher" }], }, "sales" : { "sales_id" : "sl1" , "num_sales" : 10 , "amount_per_sale" : 2.0 }, }, { "sr_id" : "sr56" , "summary" : { "id" : "sy2" , "territory" : "Italy" , "period" : "202202" }, "metadata" : { "title" : "In The End" , "artists" : [{ "artist_id" : "a48" , "name" : "Linkin Park" }], "composers" : [ { "composer_id" : "c48" , "name" : "Shinoda Mike" }, { "composer_id" : "c49" , "name" : "Delson Brad" }, ], }, "sales" : { "sales_id" : "sl2" , "num_sales" : 20 , "amount_per_sale" : 1.0 }, }, { "sr_id" : "sr67" , "summary" : { "id" : "sy2" , "territory" : "Italy" , "period" : "202202" }, "metadata" : { "title" : "La Jumpa" , "artists" : [{ "artist_id" : "a47" , "name" : "Bad Bunny" }, { "artist_id" : "a49" , "name" : "Arcángel" }], "composers" : [], }, "sales" : { "sales_id" : "sl3" , "num_sales" : 25 , "amount_per_sale" : 3.0 }, }, { "total_transactions" : 2 , "total_sales" : 55 , "total_amount" : 115.0 , "timestamp" : "20220101" }, ] The meeting is 1:15 but between introductions and reading you have roughly 40 min to implement this. it is enough but is a long exercise so if you hit it right at first it is hard to pick it up. I was able to complete some parts but not the whole thing and I got an automatic rejection email couple of days after so they are looking for complete solutions only.

      Questions d'entretien [2]

      Question 1

      How do you deal with having multiple processes going on at the same time?
      Répondre à cette question

      Question 2

      What factors could be used to prioritize between different tasks/processes?
      Répondre à cette question