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

      Proven IT

      Employeur impliqué

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur Proven IT | Offres d’emploi chez Proven IT | Salaires chez Proven IT | Avantages sociaux chez Proven IT
      Entretiens chez Proven ITEntretiens d’embauche pour Full Stack Developer chez Proven ITEntretien chez Proven IT


      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.

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

      avatar
      IBM
      3.6★Rémunération et avantages
      avatar
      Dell Technologies
      3.5★Rémunération et avantages
      avatar
      BairesDev
      3.8★Rémunération et avantages
      avatar
      Concentrix
      3.6★Rémunération et avantages

      Entretien pour Full Stack Developer

      12 janv. 2024
      Candidat à l'entretien anonyme
      Bengaluru
      Offre refusée
      Expérience positive
      Entretien moyen

      Candidature

      J'ai postulé via un recruteur. J'ai passé un entretien chez Proven IT (Bengaluru) en janv. 2022

      Entretien

      virtual one round 2nd round ftp person hr called me for first round was hr screening 2nd round was assessment 3rd round wasFace to face interview at office qst Certainly! Here's a simplified example of a JavaScript-related interview question along with a possible solution. Keep in mind that interview questions can vary widely, and the emphasis might be on problem-solving, algorithmic thinking, or other skills. **Question:** Given an array of integers, write a function to find the maximum sum of any two adjacent numbers. If the array is empty or contains only one element, return that element. **Example:** Input: `[1, 2, 3, 4, 5]` Output: `9` (as the maximum sum is achieved by adding 4 and 5) **Solution:** ```javascript function maxAdjacentSum(arr) { if (arr.length <= 1) { return arr.length === 1 ? arr[0] : 0; } let maxSum = arr[0] + arr[1]; for (let i = 1; i < arr.length - 1; i++) { const currentSum = arr[i] + arr[i + 1]; maxSum = Math.max(maxSum, currentSum); } return maxSum; } const inputArray = [1, 2, 3, 4, 5]; const result = maxAdjacentSum(inputArray); console.log(result); // Output: 9 ``` This question assesses the candidate's ability to iterate through an array, make comparisons, and find a solution based on a specific condition. It also tests their understanding of edge cases. Keep in mind that interviews may cover a wide range of topics, so it's essential to be well-prepared for different types of questions.

      Questions d'entretien [1]

      Question 1

      they asked angular dsa js
      Répondre à cette question