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

      Nexmo

      Acquis par Vonage

      Est-ce votre entreprise ?

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur Nexmo | Offres d’emploi chez Nexmo | Salaires chez Nexmo | Avantages sociaux chez Nexmo
      Entretiens chez NexmoEntretiens d’embauche pour Software Developer chez NexmoEntretien chez Nexmo


      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 Software Developer

      15 juil. 2019
      Candidat à l'entretien anonyme
      Londres, Angleterre
      Aucune offre
      Expérience négative
      Entretien facile

      Candidature

      J'ai postulé via un recruteur. Le processus a pris 3 semaines. J'ai passé un entretien chez Nexmo (Londres, Angleterre) en juin 2019

      Entretien

      Phone screen followed by online tech test followed by another phone screen followed by 4 1 hour interviews. The online tech test was quite easy and I had no problem getting to the final stage. I had high hopes based on what I have seen about the company. Unfortunately, it was probably the most disappointing interview experience I've ever had. There was no coding involved, the interviewers were basically coming up with questions on the spot and a lot of questions repeated themselves across different interviews. A lot of the questions were highly theoretical with little practical value. It honestly felt like a 4 hour whiteboard session. One of the interviewers was really nice, but the rest were kinda lukewarm, one of them was on their phone the whole time and not really listening. All in all, it was a complete waste of time and I would not have taken their offer even if they made one.

      Questions d'entretien [1]

      Question 1

      SQL vs NoSQL - probably the most asked question ever has been asked in 3 out of 4 interviews...
      Répondre à cette question
      2

      Autres retours d’entretien d’embauche pour un poste comme Software Developer chez Nexmo

      Entretien pour Software Engineer

      8 oct. 2019
      Candidat à l'entretien anonyme
      Londres, Angleterre
      Aucune offre
      Expérience négative
      Entretien facile

      Candidature

      J'ai postulé en ligne. Le processus a pris 4 semaines. J'ai passé un entretien chez Nexmo (Londres, Angleterre) en sept. 2019

      Entretien

      I was asked by one of the recruiters to initially have a Skype chat. After our discussion, she sent me a Codility test in which I had to score 70%. I don't remember the two problems, though they were fairly easy if you scrap all the extra details of the problem. I passed the coding test and moved on with a technical Skype interview in which a developer asked me different questions regarding which languages to choose when starting a new project, the differences between SQL and NoSQL, garbage collection. Shortly I was invited for a face-to-face meeting which consisted of four rounds of interviews. The first one was with a very cool developer who asked some whiteboard questions. One was to create a LinkedList in Java and find-a-node function in that list. After I wrote a function, he followed-up with what happens if there's a circular list and asked me to write a function finding a circular dependency in a linked list. I explained him shortly about using a slow and fast pointer and check if they ever cross. The second question was to find the missing number in an array with unique elements from 1 to 100, where the size of the array is 99. The second interviewer gave me a puzzle with climbing increasing size of staircases, the stairs could be climbed only with one step or two. The question was how many permutations was needed to climb a n-th staircase with only one or two steps. The answer is the Fibonacci series. The third session was the ugliest, because it was with two persons and one of them was very arrogant. He asked simple questions like the difference between C++ and Java and between heap and stack, what's "volatile" keyword, how to reverse a string. The two insisted a lot with system design questions and they wanted to know what is the solution using Java concurrent package to have different threads looking in a ConcurrentHashMap (behaving as a cache) if a payment request id was sent to an accounts server. What happened if multiple threads at almost the same time wanted to check in the map if the id is there? What solution does java.util.concurrent come up with to solve this problem? I didn't know which one it was. The last one was with the hiring manager who asked me, among others, to solve a strange question. He wanted to have a task scheduler and they used a set_timer(int timeout, func task) function that wrote in a buffer these parameters to be used to call the task after the timeout is finished. The problem is if another call to set_timer() comes in at a later time and the task in the buffer was not executed, that one will be overwritten by the new one and the previous one is never going to be executed. The code I needed to write was another function set_timer2(int timeout, func task) that could use set_timer() and an extra data structure, but no extra threads or language specific service executors or thread pools, that creates a seamless execution of all tasks. I couldn't finish this problem and he told me I can take it home to work on it and send it back to him. I haven't received any feedback about how the whole interview, but only the recruiter pushing me to send back the solution to the send_timer(). Eventually I did send it, incrementally, to the general manager and didn't hear anything from them anymore. Instead, I wrote to the HR person after two weeks and she replied that she was sorry for not providing any feedback by that time and the actual feedback is that I lack core Java competency and I couldn't solve the "architectural" questions. That's why you, the future candidate, should just stay away from this company because they're simply looking at different problem solving perspectives to some of the issues they face, but they don't necessarily hire.

      Questions d'entretien [1]

      Question 1

      #1. Write a linked list class and a find a node in it function and a find if there's circular dependency function. #2.Missing integer in an array consisting of numbers from 1..100, having the size 99. #3. How permutations of one and two steps there are for climbing a N staircases, where each staircase is one bigger than the previous, i.e. first stair has a size 1, second a size 2, third size 3. For instance to get to 3rd stair it takes two permutations, 4th takes 3, the 5th takes 5 and so on. The answer is the Fibonacci series. #4. How to reverse a string in place. #5. Difference between heap and cache. #6. How to check in a Map using java.util.concurrent if an ID (the key in this case) is there and notify other threads about it so that if they search for that ID at the same time they can see it. #7. Write a set_timer2() function using a set_timer() using only a data structure of your choice and without the help of extra threads. For full details go to explanation written at the "Describe the Interview Process". #8. Explain the system design of one of your previous projects.
      Répondre à cette question
      3

      Entretien pour Developer

      17 janv. 2019
      Candidat à l'entretien anonyme
      Aucune offre
      Expérience positive
      Entretien facile

      Candidature

      J'ai postulé en ligne. J'ai passé un entretien chez Nexmo

      Entretien

      After I applied online, I received an invitation for a phone call. and after the phone call I got invited to a test to solve. The test is on codilty website which is a platform for both developers and recruiters

      Questions d'entretien [1]

      Question 1

      What is your experience
      Répondre à cette question

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

      avatar
      AT&T
      3.8★Rémunération et avantages
      avatar
      Telefónica
      3.8★Rémunération et avantages
      avatar
      Huawei Technologies
      3.6★Rémunération et avantages
      avatar
      Nokia
      3.5★Rémunération et avantages