Me postulé en línea. El proceso tomó 3 semanas. Acudí a una entrevista en Check Point Software Technologies (Tel Aviv) en ago 2024
Entrevista
Started with codility test, 2 simple question, after that an interview with team lead and after that interview with group lead. Both interview was 2 hours long technical interviews in C. They were very nice.
Preguntas de entrevista [5]
Pregunta 1
Codility- You get a CSV formated string, remove all rows that have NULL int them.
Second question team lead - you have 2 function, 'add(func, time)' , 'run()', implement something (like a struct) that will support adding functions and there time of run, when run function is called, al the functions need to run at there time.
Example:
add(func1,2)
add(func2, 5)
add(func3,3)
add(func4, 6)
run()
So the the first function will run after 2 seconds since the run called, then func3 will run after 3 second since the run have been called and so on..
Second question group lead- you have 1Mb of memory, implement the functions malloc and free in C (of course not using the stdlib functions). How much memory your implementing requires? and how much of the 1Mb is actually left for the user?
Remember malloc need to return an Pointer to an address and free gets a pointer and frees it.
Me postulé en línea. Acudí a una entrevista en Check Point Software Technologies (Tel Aviv)
Entrevista
medium leetcode problem , talk about yourself , talks about the company , solving through zoom video call remote control is laggy , i was not ready for interviews at that time
Me postulé a través de un reclutador. Acudí a una entrevista en Check Point Software Technologies (Tel Aviv)
Entrevista
I intrivewed at check point a year ago, the intrview starts where i introduce myself then had two leetcode questions in c/c++ one of them make atoi function the second i forgot and has to do it on paper in the office.
Acudí a una entrevista en Check Point Software Technologies (Tel Aviv)
Entrevista
The interview process started with a reasonable-level take-home assignment, which included a few LeetCode-style algorithmic questions. After that, I was invited to an on-site interview day at the company, where they brought in over 10 candidates for one or two open positions. Unfortunately, I was eliminated fairly early in the day.
Preguntas de entrevista [1]
Pregunta 1
I can’t recall the exact wording of the question, but the problem was conceptually almost identical to LeetCode’s “Product of Array Except Self,” and required the same kind of approach to solve.