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

      Insiten

      ¿Esta es tu empresa?

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de Insiten | Empleos en Insiten | Sueldos en Insiten | Prestaciones en Insiten
      Entrevistas en InsitenEntrevistas para el cargo de Junior Software Developer en InsitenEntrevista en Insiten


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

      28 de feb de 2025
      Candidato de entrevista anónimo
      Atlanta, GA

      Otras evaluaciones sobre las entrevistas para el cargo de Junior Software Developer en Insiten

      Entrevista para Junior Software Engineer

      26 de mar de 2025
      Candidato de entrevista anónimo
      Atlanta, GA
      Sin ofertas
      Sin ofertas
      Experiencia neutra
      Entrevista fácil

      Solicitud

      Me postulé en línea. El proceso tomó 1 semana. Acudí a una entrevista en Insiten (Atlanta, GA) en ene 2025

      Entrevista

      Interview was with a senior developer. first round was a sort of technical screening. I was asked about virtual dom in react, difference between state and props, why do we use state hooks in react instead of just variable assignment, why/when is it appropriate to use some sort of global context. there was a couple of questions about passing by reference vs passing by value. second round was a live coding exercise (which the interviewer had originally told me it would be like reversing a string, it wasn't). The actual challenge was given an array of objects with three properties (id, status, description), return an object grouped by the status property and return the status names with the most items in it's corresponding array. third round was supposed to be a take home build challenge, but I was not contacted for a third round

      Preguntas de entrevista [3]

      Pregunta 1

      let a = {}; let b = {}; console.log(a===b) what will be printed to the console
      Responder pregunta

      Pregunta 2

      let a = {num: 1} let b = a a.num += 1 console.log(b.num) what will be printed to the console
      Responder pregunta

      Pregunta 3

      /* INSTRUCTIONS: Group an array of objects by status, and return the status name that has the most items in its corresponding array. */ const arr = [ { id: 1, title: "target1", status: "pending" }, { id: 2, title: "target2", status: "pending" }, { id: 3, title: "target3", status: "declined" }, { id: 4, title: "target4", status: "approved" }, { id: 5, title: "target1", status: "approved" }, { id: 6, title: "target6", status: "pending" } ]; function groupTargetsByStatus(arr) { const group = {} arr.forEach(item => { !group[item.status] ? group[item.status]=[ item ] : group[item.status].push(item) }) return group } function statusThatHasMostTargets(arr) { // your code here const group = groupTargetsByStatus(arr) let max = 0 let maxGroup = '' for ( let item in group) { if (item.length > max){ max = item.length maxGroup = item[0].status } } } console.log(groupTargetsByStatus(arr)) /* { pending: [ { id: 1, title: "target1", status: "pending" }, { id: 2, title: "target2", status: "pending" }, { id: 6, title: "target6", status: "pending" } ], approved: [ { id: 4, title: "target4", status: "approved" }, { id: 5, title: "target1", status: "approved" } ], declined: [ { id: 3, title: "target3", status: "declined" } ] } */ console.log(statusThatHasMostTargets(arr)) // "pending"
      Responder pregunta
      Experiencia positiva
      Entrevista promedio

      Solicitud

      Acudí a una entrevista en Insiten (Atlanta, GA)

      Entrevista

      Questions about JS/React knowledge, technical problems, then a week-long take home that is reviewed with the development team thru an in-person technical review and overview. Overall, high buy-in for a company that values junior development.

      Preguntas de entrevista [1]

      Pregunta 1

      Fix a bug found in your take home assessment.
      Responder pregunta