I applied online. I interviewed at Burq (Lahore) in Mar 2024
Interview
* 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
Interview questions [1]
Question 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].