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
Ho presentato la mia candidatura online. La procedura ha richiesto una settimana. Ho sostenuto un colloquio presso Confidential (Boston, MA) nel mese di mag 2024
Colloquio
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.
Ho presentato la mia candidatura online. Ho sostenuto un colloquio presso Confidential (New York, NY) nel mese di gen 2024
Colloquio
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.
Domande di colloquio [1]
Domanda 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].