I applied online. The process took 1 week. I interviewed at Check Point Software Technologies in Jan 2024
Interview
applied online,
- HR call about the position
- Codility Online Assasment - 3 questions, 130 minutes.
- I didn't pass the test although I was thinking I did great.
Interview questions [1]
Question 1
Codility Questions -> LeetCode Style.
1. you are given a message (String) and K (number),
and you need to return an edited message (String) to be displayed at some app that can display at most K chars for this message. for this you need to edit the message only between words and add " ..." in the end. for example:
"this is an example message", K = 10 :
return "this ,,, " because "this is ,,," length is 11 and you need to omit "is" as well.
2. you are given a string representing moves of a robot "<><>v^" in a 2D plane. you are starting at (0,0) and need to return True or False if the robot path after the moves creats a rectangle.
3. https://leetcode.com/discuss/interview-question/4309863/Microsoft-OA-Historical-Max-Profit-of-a-Stock/
I though I was doing great, and I passed all the example tests. I think I fell on "performance" tests. LESSON LEARNED : AVOID RECURSION IF THE INPUT CAN BE LARGE! :(
I applied online. I interviewed at Check Point Software Technologies (Tel Aviv-Yafo)
Interview
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
I applied through a recruiter. I interviewed at Check Point Software Technologies (Tel Aviv-Yafo)
Interview
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.
I interviewed at Check Point Software Technologies (Tel Aviv-Yafo)
Interview
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.
Interview questions [1]
Question 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.