I applied online. The process took 2 weeks. I interviewed at Infinidat (Petah Tikva) in Nov 2020
Interview
I was interviewed for a junior position. I had a phone interview in which I was asked about my studies and my past. Then a short online test and after a week a technical interview. The interviewer in the last interview was impatient and the interview wasn't pleasant.
Interview questions [4]
Question 1
(phone interview)
Tell me about a project you did, what technologies you used in the military, what courses you loved in your studies
(technical interview)
You have two arrays: A and B. A contains ints and B has pairs: (element from A, the number of elements that are larger than that element and to the right of it in A).
for example:
A = [4,3,5]
B = [(5,0), (3,1), (4,1)]
Given array B, recreate array A
(technical interview)
Build a data structure that supports the following functions:
int alloc() - allocates a new element to a data structure and initializes its value to 0.
void inc(key) - Increases the value of the element by one.
int get(key) - returns the value of the given key
void resetAll() - Initializes the values of all elements to be 0.