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

      webiks

      Est-ce votre entreprise ?

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur webiks | Offres d’emploi chez webiks | Salaires chez webiks | Avantages sociaux chez webiks
      Entretiens chez webiksEntretiens d’embauche pour Full Stack Developer chez webiksEntretien chez webiks


      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 Full Stack Developer

      15 août 2024
      Candidat à l'entretien anonyme
      Aucune offre
      Expérience négative
      Entretien moyen

      Candidature

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

      Entretien

      The recruiter contacted me, we arranged to talk at a specific time and day. She didn't call, a day later I contacted her and we set another date. Even at the new date, she did not make contact.

      Questions d'entretien [1]

      Question 1

      The recruiter didnt call twice
      Répondre à cette question

      Autres retours d’entretien d’embauche pour un poste comme Full Stack Developer chez webiks

      Entretien pour Full Stack Developer

      27 juil. 2024
      Candidat à l'entretien anonyme
      Tel Aviv-Yafo
      Aucune offre
      Expérience neutre
      Entretien moyen

      Candidature

      J'ai postulé en ligne. J'ai passé un entretien chez webiks (Tel Aviv-Yafo) en juil. 2024

      Entretien

      1. **Home Test**: A practical assessment to evaluate coding skills, problem-solving abilities, and familiarity with relevant technologies and frameworks, often involving real-world scenarios related to the job role. 2. **Technical Questions about My Projects**: Detailed inquiries into the projects I've worked on, focusing on the architecture, technologies used, challenges faced, and solutions implemented, to assess my technical expertise and experience. 3. **Design Chat System**: An exercise or discussion focused on designing a chat system, covering aspects such as system architecture, data flow, scalability, security, and user experience considerations. 4. **HackerRank Questions**: Coding challenges and algorithm problems on the HackerRank platform, designed to test my problem-solving skills, coding efficiency, and ability to write clean and optimized code. 5. **HR Interview**: A conversation with a Human Resources representative to evaluate my cultural fit, communication skills, career aspirations, and understanding of the company's values and work environment. 6. **CEO Interview**: A high-level discussion with the CEO to assess my overall fit within the organization, my vision and goals, leadership potential, and how I can contribute to the company's long-term success.

      Questions d'entretien [1]

      Question 1

      Implement sum operation with recursion for binary tree
      Répondre à cette question
      1

      Entretien pour Full Stack Developer

      5 janv. 2024
      Candidat à l'entretien anonyme
      Tel Aviv-Yafo
      Aucune offre
      Expérience positive
      Entretien moyen

      Candidature

      J'ai postulé en ligne. Le processus a pris 2 jours. J'ai passé un entretien chez webiks (Tel Aviv-Yafo) en janv. 2024

      Entretien

      The first process of the interview is a home assignment with 90 minutes to solve it. The assignment contains 3 challenging but not so difficult questions. The task is been solved through HackerRank and the platform is very convinient

      Questions d'entretien [1]

      Question 1

      given an array of integers, without reordering, determine the maximum difference between any element and prior smaller element. If there is never a lower prior element, return -1. example arr = [5,3,6,7,4] there are no earlier elements than arr[0]. there is no earlier reading with a value lower than arr[1]. there are two lower earlier readings with a value lower than arr[2]=6: • arr[2] - arr[1] = 6 - 3 = 3 • arr[2] - arr[0] = 6 - 5 = 1 there are three lower earlier readings with a lower value than arr[3]=7: • arr[3] - arr[2] = 7 - 6 = 1 • arr[3] - arr[1] = 7 - 3 =4 • arr[3] - arr[0] = 7 - 5 =2 there is one lower earlier reading with a lower value than arr[4]=4: • arr[4] - arr[1] = 4 - 3 = 1 the maximum trailing record is arr[3] - arr[1] = 4
      1 réponse
      3