Tip 1 : Must do Previously asked Interview as well as online test Questions.
Tip 2 : Go through all the experiences from geeks for geeks and leetcode.
Tip 3 : Do atleast 2 good projects and must know every bit of them.
Tip 1 : Have atleast 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
Timing was as per our choice in whole day.
Test environment was really good.
It had 4 sections :
1. Code debugging
2. Coding
3. Aptitude
4. Behavioural Questions



Input: 'list' = [1, 2, 3, 4], 'k' = 2
Output: 2 1 4 3
Explanation:
We have to reverse the given list 'k' at a time, which is 2 in this case. So we reverse the first 2 elements then the next 2 elements, giving us 2->1->4->3.
All the node values will be distinct.



If the given graph is :

Then the edge between 0 and 4 is the bridge because if the edge between 0 and 4 is removed, then there will be no path left to reach from 0 to 4.and makes the graph disconnected, and increases the number of connected components.
There are no self-loops(an edge connecting the vertex to itself) in the given graph.
There are no parallel edges i.e no two vertices are directly connected by more than 1 edge.
This round comprised of Introduction followed by 2 coding questions to be coded on live, Amazon's shared coding platform.
Platform used for interview is Amazon Chime.






You need to modify the given tree only. You are not allowed to create a new tree.
For the given binary search tree

11 will be replaced by {15 + 29 + 35 + 40}, i.e. 119.
2 will be replaced by {7 + 11 + 15 + 29 + 35 + 40}, i.e. 137.
29 will be replaced by {35 + 40}, i.e. 75.
1 will be replaced by {2 + 7 + 11 + 15 + 29 + 35 + 40}, i.e. 139.
7 will be replaced by {11 + 15 + 29 + 35 + 40}, i.e. 130.
15 will be replaced by {15 + 29 + 35 + 40}, i.e. 104.
40 will be replaced by 0 {as there is no node with a value greater than 40}.
35 will be replaced by {40}, i.e. 40.
This round consisted of introduction followed by 1 coding question to be coded on shared online coding platform.
It was a kind of situational problem which I had to solve using optimum data structures.Questions was a bit of like event scheduling based but was a practical scenario based.
This round comprised of introduction, 3-4 behavioural situation based questions and 1 coding question to be coded on shared coding platform.
Question was a kind of making clone of facebook.

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?