Ik heb online gesolliciteerd. De procedure duurde 1 week. Ik heb gesolliciteerd bij Check Point Software Technologies (Tel Aviv) in feb 2022
Sollicitatiegesprek
test and logic question and algoritm code qurstion.
1 hour of questions and answers
the interviewers gave a good feeling about working there and i want to give a try
in addition this job can help your experience for sure
Sollicitatievragen [1]
Vraag 1
Given a sorted array of N elements, with the number 1 to N, suggest an algorithm to scramble it in such a way that the i-th element will have an equal probability to be in each index.
Ik heb via een recruiter gesolliciteerd. De procedure duurde 2 weken. Ik heb gesolliciteerd bij Check Point Software Technologies (Tel Aviv) in jul 2025
Sollicitatiegesprek
it was good the platform was nice to work on and understandable, showed my skills pretty well!
they came back to me pretty quickly as well! like 40 minutes after the code challenges
Ik heb gesolliciteerd bij Check Point Software Technologies
Sollicitatiegesprek
HR screening, home assignment - easy-medium codility.
TL interview (90 min) - 2 technical questions - reverse linked list and another one a bit more complicated.
GM interview (60 min)
Sollicitatievragen [1]
Vraag 1
Reverse a linked list.
Comparing recursion and iteration based solutions.
Ik heb via een werknemersdoorverwijzing gesolliciteerd. De procedure duurde 2 weken. Ik heb gesolliciteerd bij Check Point Software Technologies (Tel Aviv) in mrt 2025
Sollicitatiegesprek
In the first step, there was not interview, only a coding exercise conaining 3 LeetCode -like questions. For one of them i had to think of the "fastest" solution, where for the rest i needed only to get correct algorithms.
Sollicitatievragen [1]
Vraag 1
Input: string in the format of XX:XX, where X could be either X or a digit (guaranteed).
output: fill the X's so the string will contain the "latest" date on the year in the format of DD:MM, or null if the date is invalid.
for example:
1. the input is "24:XX", the XX will be 12 because the latest date in the year that could fit here is December 24th.
2. the output for "X1:11" the date would be "21:11" beacuse November doesn't have only 30 days and not 31 so "31:11" is invalid
3. the output for "4X:XX" would be null because there is no month with more then 31 days in it.
note: rembember that each month have a different amound of days