Ho presentato la mia candidatura online. Ho sostenuto un colloquio presso Burq (Lahore) nel mese di mar 2024
Colloquio
* first round is with HR that is pretty simple
* then second round is with engineering manager this round is also very simple. questions like what will you do if you have any conflict with team? which languages have you worked on? etc
* then third round will be a coding round with two questions one related to API and the other will be related to problem solving.
* then forth round will be with another engineer asking system design question.
* meet with CEO and then offer is places
Domande di colloquio [1]
Domanda 1
Two Sum
Input: nums = [2,7,11,15], target = 9
Output: [0,1]
Explanation: Because nums[0] + nums[1] == 9, we return [0, 1].