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

      Cato Networks

      Empleador activo

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de Cato Networks | Empleos en Cato Networks | Sueldos en Cato Networks | Prestaciones en Cato Networks
      Entrevistas en Cato NetworksEntrevistas para el cargo de Senior Full Stack Developer en Cato NetworksEntrevista en Cato Networks


      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.

      Las mejores empresas en cuanto a "Remuneración y prestaciones" cerca de ti

      avatar
      AttackIQ
      4.4★Remuneración y prestaciones
      avatar
      Riba&Carod Associats
      4.4★Remuneración y prestaciones

      Entrevista para Senior Full Stack Developer

      30 jun 2021
      Candidato de entrevista anónimo
      Tel Aviv

      Otras evaluaciones sobre las entrevistas para el cargo de Senior Full Stack Developer en Cato Networks

      Entrevista para Senior Full Stack Developer

      27 feb 2024
      Candidato de entrevista anónimo
      Tel Aviv
      Sin ofertas
      Sin ofertas
      Experiencia positiva
      Entrevista promedio

      Solicitud

      Me postulé a través de una recomendación de un empleado. El proceso tomó 1 semana. Acudí a una entrevista en Cato Networks (Tel Aviv) en jun 2021

      Entrevista

      I got a phone call and I was invited for an interview. The interviewer was a nice person and told me about the technology in the company. Then he asked me to describe something I was working on.

      Preguntas de entrevista [1]

      Pregunta 1

      He asked me to design a system
      Responder pregunta
      avatar
      Respuesta de Cato Networks
      4y
      Thank you for sharing your experience interviewing with us. We strive to make the candidate experience as enjoyable as possible and are very glad you had a positive one.
      Experiencia neutra
      Entrevista promedio

      Solicitud

      Me postulé en línea. El proceso tomó 3 semanas. Acudí a una entrevista en Cato Networks (Tel Aviv) en ene 2024

      Entrevista

      1. HR screening. 2. Interview with a senior software engineer. 3. Interview with a team lead. 4. Second interview with a team lead at the office. After the fourth interview I get a reject with a reason that the recruiting team cannot suggest me what I’m searching. Fair but why not to do it a few steps before when I already explained what I’m searching.

      Preguntas de entrevista [2]

      Pregunta 1

      Implement LRU cache with increasing logical complexity and adding new steps for such cache.
      Responder pregunta

      Pregunta 2

      Describe the latest project you did.
      Responder pregunta

      Entrevista para Senior Full Stack Developer

      7 may 2023
      Candidato de entrevista anónimo
      Sin ofertas
      Experiencia positiva
      Entrevista promedio

      Solicitud

      Acudí a una entrevista en Cato Networks en may 2023

      Entrevista

      After a quick chat with the recruting HR, I had a technial interview with a group manager and a dev team lead. Interviewers were nice and welcoming, talked about the company, about the group and the team and the role and a bit about what the role would be like. After that they wanted to hear a bit on me.

      Preguntas de entrevista [1]

      Pregunta 1

      1. Tell about a project that you did and a bit deep dive and things that could have been improved or were problematic and how did you overcome it or how would you approve it. 2. Given the following code: /** * Handles events * Tries to send them 5 times before deleting * For example: * * 12:00 * 12:02 * 12:04 * 12:08 * 12:16 */ public class EventsHandler { /** * Is triggered every minute 12:00, 12:01, 12:02, 12:03... * @param events event to save */ public void handle(List events) { } /** * Tries to save an event in DB * @param event * @return true = event was saved successfully, false = event wasn't saved * */ private boolean saveEvent(Event event) { return DBUtil.saveEventToDB(event); } } Method saveEvent, can sometimes return false for events to failed to be saved in the db. In case an event failed to be saved we need to store it somewhere and manage it, so in the next round (handle method runs every minute), it will run all the events that failed in the previous round. In short implement retries for failed events (including storing them somewhere). You can use whatever you want. Implement the handle method so it can manage and save
      Responder pregunta
      3