Tip 1: Review previously asked interview and online test questions.
Tip 2: Ensure a strong understanding of Data Structures and Algorithms (DSA).
Tip 3: Complete at least two substantial projects and thoroughly understand every aspect of them.
Tip 1: Have at least two good projects explained briefly, covering all critical points.
Tip 2: Mention every skill you have.
Tip 3: Focus more on skills, projects, and experiences.
This round tested your DSA skills; you need to be well prepared for it and the depth of your knowledge in the tech stack. The questions were also asked on Core Computer Science Subjects like OS, Data Structures and algorithms, OOPs, DBMS, and some behavioural questions.



A subsequence of an array/list is obtained by deleting some number of elements (can be zero) from the array/list, leaving the remaining elements in their original order.



1) Every candidate in the paid group should be paid in the ratio of their skill compared to other candidates in the paid group.
2) The minimum salary expectation of every candidate in the paid group should be fulfilled.
Answers which are within the range 10^-6 of the correct answer will be considered correct.
In this round, I was asked one system design question and one good DSA question.
Design Search Typeahead.
Tip 1: Listen to all the requirements clearly
Tip 2: Practice previously asked questions



1. The array follows 0-based indexing.
2. In one rotation operation, all elements of the array will shift either towards the left or right by one index.
3. The element at the extreme left index (i.e. 0th index) will shift to the 'N-1'th index after applying one left rotation on the array and the rest all the elements will shift to the 'i-1'th index.
4. The element at the extreme right index (i.e. 'N-1'th index) will shift to the 0th index after applying one right rotation on the array and the rest of the elements will shift to the 'i' + 1'th index.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?