Tip 1 : Practice Company specific DS Algo questions from LeetCode, GFG, Interviewbit, Coding Ninjas etc.
Tip 2 : Take mock interviews with your friends to gain confidence.
Tip 3 : Try Solving Questions on Notepad as in interview IDE will not be provided.
Tip 1 : Write things in resume like projects, experience and skills which you can explain and defend clearly.
Tip 2 : Add links of your various online platforms profiles like Codechef, Codeforces etc. if you are active on these platforms.
The test was on AMCAT platform.
The test was of 2.5 hours , web-proctored and switching between tabs was not allowed.
Test consist of 4 sections:
1 Debug section which had 7 questions to correct/write the code. (20min)
2 Coding section having 2 questions. (70 min)
3 Logical Reasoning section. (35 min)
4 Workstyle assessment. (20 min)


If the given matrix is:
[ [1, 2, 5],
[3, 4, 9],
[6, 7, 10]]
We have to find the position of 4. We will return {1,1} since A[1][1] = 4.



Interview was conducted on Amazon Chime platform and for coding, link was shared on which I had to code.
Two questions were given to me and requested to solve in the desired time.
Interviewer was friendly and supportive.


For given N = 4, M = 4,

In the above example, the number of nodes reachable from nodes 0 , 1, 2 and 3 is 4.



Input:
‘ARR’ = [-6,-3, 2, 1, 5]
If we take a square of each element then the array/list will become [36, 9, 4, 1, 25].
Then the sorted array/list will be [1, 4, 9, 25, 36].
Output :
[1, 4, 9, 25, 36].
Interview was conducted on Amazon Chime platform and for coding, link was shared on which I had to code.
Three questions were given to me and requested to solve in the desired time.
Interviewer was friendly and supportive.



1. Any left parenthesis '(' must have a corresponding right parenthesis ')'.
2. Any right parenthesis ')' must have a corresponding left parenthesis '('.
3. Left parenthesis '(' must go before the corresponding right parenthesis ')'.
4. '*' could be treated as a single right parenthesis ')' or a single left parenthesis '(' or an empty string.
5. An empty string is also valid.



Below is the example showing the input tree and its sum tree.


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?