I applied online. The process took 2 months. I interviewed at Rafael (Haifa) in Jul 2022
Interview
1. Interview on the phone - about myself, oop knowledge, memory knowledge, and operation system (process and threading)
2. Online exam - arrays, coding, and basic knowledge
3. Interview on-site with two Interviewers
Interview questions [1]
Question 1
1. Maximum Subarray - Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum.
A subarray is a contiguous part of an array.
2. Product of Array Except Self - Given an integer array nums, return an array answer such that answer[i] is equal to the product of all the elements of nums except nums[i]. The product of any prefix or suffix of nums is guaranteed to fit in a 32-bit integer.