I applied through an employee referral. The process took 2 weeks. I interviewed at Sayata (Tel Aviv-Yafo)
Interview
Coding exercise at home and a technical interview on site of 1 hour with java script questions.
The hr was really nice.
It was a nice company with lovely people, they wanted more experience
I applied online. The process took 5 days. I interviewed at Sayata (Mumbai) in Oct 2022
Interview
3 rounds of interview 2 technical, 1 HR and it is a smooth process to crack interview. Technical rounds were easy. Interviewer were very frankly .Three rounds of interview, two technical and one HR
I applied online. I interviewed at Sayata (Tel Aviv-Yafo) in Jun 2023
Interview
The interview went on Zoom. In the beginning, I was asked a couple of behavioral questions, about my past professional experience and the projects I participated in. Then we passed on to a second part of the interview when I was asked two technical questions.
Interview questions [2]
Question 1
Given an array of numbers where every number >= 0. The items need to be connected. If no answer exists return maxInt example 1: arr = [1, 4, 45, 6, 0, 19] target = 51 output -> 3 because sum([4, 45, 6]) > 51 example 2: arr = [1, 10, 5, 2, 7] target = 9 output -> 1 because sum([10]) > 9
Build Set class with following methods: get(key), set(key, val), clear. Each of the methods time and space complexity has to be O(1). Also Clear method is not allowed to erase the internal memory object of the Class by reassigning its value to an empty one,