Ir al contenidoIr al pie de página
  • Empleos
  • Empresas
  • Sueldos
  • Para empleadores

      Impulsa tu carrera profesional

      Averigua cuánto podrías ganar, encuentra el empleo perfecto y comparte información sobre tu vida laboral y personal de forma anónima.

      employer cover photo
      employer logo
      employer logo

      Proven IT

      Empleador activo

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de Proven IT | Empleos en Proven IT | Sueldos en Proven IT | Prestaciones en Proven IT
      Entrevistas en Proven ITEntrevistas para el cargo de Full Stack Developer en Proven ITEntrevista en Proven IT


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empleadores

      • Cuenta de empleador gratuita
      • Centro de empleador

      Información

      • Ayuda
      • Pautas
      • Condiciones de uso
      • Privacidad y opciones de anuncios
      • No vender ni compartir mi información
      • Herramienta de autorización de cookies

      Trabaja con nosotros

      • Anunciantes
      • Oportunidades laborales
      Descargar aplicación

      • Buscar por:
      • Empresas
      • Empleos
      • Ubicaciones

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor", "Worklife Pro", "Bowls" y sus logotipos son marcas comerciales registradas de Glassdoor LLC.

      Empresas seguidas

      Sigue a tus empresas favoritas para estar al tanto de las últimas oportunidades y disponer de información desde adentro.

      Búsquedas de empleo

      Recibe recomendaciones y actualizaciones personalizadas al iniciar tu búsqueda.

      Entrevista para Full Stack Developer

      12 ene 2024
      Candidato de entrevista anónimo
      Bengaluru
      Oferta rechazada
      Experiencia positiva
      Entrevista promedio

      Solicitud

      Me postulé a través de un reclutador. Acudí a una entrevista en Proven IT (Bengaluru) en ene 2022

      Entrevista

      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.

      Preguntas de entrevista [1]

      Pregunta 1

      they asked angular dsa js
      Responder pregunta