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

      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

      Empresa activa

      Información
      Opiniones
      Sueldos y beneficios
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Opiniones sobre Cato Networks | Ofertas de empleos en Cato Networks | Sueldos en Cato Networks | Beneficios en Cato Networks
      Entrevistas de Cato NetworksEntrevistas para el puesto de Senior Full Stack Developer en Cato NetworksEntrevista de Cato Networks


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empresas

      • Cuenta gratuita de empresa
      • Centro de empresas

      Información

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

      Trabaja con nosotros

      • Anunciantes
      • Empleo
      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 de primera mano.

      Búsquedas de empleo

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

      Las mejores empresas en cuanto a «Remuneración y beneficios» cerca de ti

      avatar
      SAP
      3.9★Remuneración y beneficios
      avatar
      Cisco
      4.0★Remuneración y beneficios
      avatar
      ADP
      3.5★Remuneración y beneficios
      avatar
      Autodesk
      4.0★Remuneración y beneficios

      Entrevista de Senior Full Stack Developer

      30 jun 2021
      Candidato de entrevista anónimo
      Tel Aviv

      Otras opiniones sobre las entrevistas para el puesto de Senior Full Stack Developer en Cato Networks

      Entrevista de Senior Full Stack Developer

      27 feb 2024
      Candidato de entrevista anónimo
      Tel Aviv
      Sin oferta
      Sin oferta
      Experiencia positiva
      Entrevista normal

      Solicitud

      Solicité el puesto a través de la recomendación de un empleado. El proceso duró 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 normal

      Solicitud

      Envié una solicitud electrónica. El proceso duró 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 de Senior Full Stack Developer

      7 may 2023
      Candidato de entrevista anónimo
      Sin oferta
      Experiencia positiva
      Entrevista normal

      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