Tip 1 : Build a concise resume
Tip 2 : Be prepared with your projects
Tip 3 : Practice basic DSA questions , that'll get you through.
Tip 1 : Make sure to include your strong projects
Tip 2 : Add relevant skills to the job profile & some co-curricular activities as well.
First Round : Consisted of MCQs based on CS fundamentals & Aptitude , which were easy to solve. Also it contained two coding questions based on arrays. One was finding the maximum frequency element & other was based on Kadane's Algorithm.



For 'arr' = [ 1, 2, 3, 1, 2]. you need to return 1.
This is a very simple & straightforward question. I stored all the frequencies of elements in an unordered hashmap & then iterated over the map & returned the key of the map with highest value of frequency.



Input: 'arr' = [1, 2, 7, -4, 3, 2, -10, 9, 1]
Output: 11
Explanation: The subarray yielding the maximum sum is [1, 2, 7, -4, 3, 2].
I began with the question with normal brute-force , i.e. I calculated the sum of all subarrays & returned the maximum out of them. To my suprise , the constraints were so weak that the O(n2) approach worked for all test cases & I didn't go for the Kadane's Algorithm which is based on O(n) time complexity.
This was an HR based round which consisted of basic HR questions based on team bonding & different scenarios etc about which you can search on YouTube.
Introduction.
Asked me about Hashmaps , If/Else , Break/Continue statements.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: