Round1 screening, round 2 technical discussion with coding and review also scenarios then hr discussion. If you get clear hr will call and update the offer. Development coding for interview technical discussion and once you write the code you need explaining the code review with examples.
Was good and professional . Also I did great in the part when they asked technical questions, usually it is easy when also the HR is friendly . It was kinda hectic when it came to goals on the long run
I applied online. The process took 1 week. I interviewed at Confidential (Boston, MA) in May 2024
Interview
It was a professional interview process with skills discussion and culture previous roles as well. We went through different scenarios on how to handle security situations in Cyber Security situations.
I applied online. I interviewed at Confidential (New York, NY) in Jan 2024
Interview
good interview, some coding questions, some behavioral questions, overall good process, i would interview there again, it was a pleasant experience. Coding questions were focused on a variety of things, there was some system design, some data science/algo stuff, and then a mix of other leetcode style questions.
Interview questions [1]
Question 1
Given an array of integers nums and an integer target, return the indices of the two numbers such that they add up to target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.
You can return the answer in any order.
Input: nums = [2, 7, 11, 15], target = 9
Output: [0, 1]
Explanation: Because nums[0] + nums[1] == 9, we return [0, 1].