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

      Nextlabs

      Est-ce votre entreprise ?

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur Nextlabs | Offres d’emploi chez Nextlabs | Salaires chez Nextlabs | Avantages sociaux chez Nextlabs
      Entretiens chez NextlabsEntretiens d’embauche pour Java Engineer chez NextlabsEntretien chez Nextlabs


      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 Java Engineer

      12 janv. 2012
      Candidat à l'entretien anonyme
      San Mateo, CA
      Aucune offre
      Expérience neutre
      Entretien difficile

      Candidature

      J'ai postulé en ligne. Le processus a pris 2 semaines. J'ai passé un entretien chez Nextlabs (San Mateo, CA) en janv. 2012

      Entretien

      The recruiter contacted me, and said that their company doesn't pay for relocation costs, asked whether I want to process the interview or not, and after that, we scheduled the first interview, it was a online coding interview, you need to provide the skype account, and do the video call with them. The recruiter will pass the questions to you on skype, and you need to code it in front of them. (I think they just want to make sure that it's you, the people who write the code). The interview took around 1.5 hrs. There have 5 coding questions.

      Questions d'entretien [5]

      Question 1

      1. Implement the following function: int findMax(int[] items) { }
      1 réponse

      Question 2

      2. Implement the following interface to implement a binary search tree in Java public interface BinaryTree<T extends Comparable<? super T>> { public void insert(T data); public T findMin(); public boolean contains(T data); public void remove(T data); } 2.1. (optional) What does T extends Comparable< super T>> mean? Ans: It means that T has to be of type Comparable, which can avoid redundantly specifying type parameters
      1 réponse

      Question 3

      3. Trees (binary and otherwise) form the basis of many common data structures. Please describe some of these data structures and when they might be used.
      2 réponse(s)

      Question 4

      4. Implement a basic Thread Pool in Java. When it’s completed, discuss the trade offs of your implementation. If you had unlimited time, discuss what improvements you would make to it and how these improvements would help developers that used your thread pool.
      Répondre à cette question

      Question 5

      5. The user of this class expected the output “Num: 1000000”. They got something else. What went wrong and how would you fix it? public class Test { public final static int NUMTHREADS = 1000; public final static int NUMLOOP = 1000; public static int num = 0; static class Mythread extends Thread { @Override public void run() { for (int i = 0; i < NUMLOOP; i++) { ++num; } } } public static void main(String argv[]) { Mythread threads[] = new Mythread[NUMTHREADS]; for (int i = 0; i < NUMTHREADS; ++i) { threads[i] = new Mythread(); threads[i].start(); } try { for (int i = 0; i < NUMTHREADS; ++i) { threads[i].join(); } } catch (InterruptedException e) { } System.out.println("Num: " + num); } }
      2 réponse(s)