Tip 1 : Be Strong with DSA
Tip 2 : Be Strong with OOPS and Core CS Fundamentals
Tip 1 : One Page Resume
Tip 2 : Highlight your coding profiles
MCQ + Coding



In mathematical terms, the sequence Fn of Fibonacci numbers is defined by the recurrence relation
Fn = Fn-1 + Fn-2
with seed values
F0 = 0 and F1 = 1.
OS in Depth and DSA
Virtual Memory,
Orphan process, Zombie process,
OS Boot Process,
Memory Management,
Linux Commands
Tip 1: Learn OS Concepts in depth



For the given array 'ARR' = [7, 12, 1, 20]
The next greater element for 7 is 12.
The next greater element for 12 is 20.
The next greater element for 1 is 20.
There is no greater element for 20 on the right side.
So, the output is [12, 20, 20, -1].
Push the first element to stack.
Pick rest of the elements one by one and follow the following steps in loop.
Mark the current element as next.
If stack is not empty, compare top element of stack with next.
If next is greater than the top element, Pop element from stack. next is the next greater element for the popped element.
Keep popping from the stack while the popped element is smaller than next. next becomes the next greater element for all such popped elements.
Finally, push the next in the stack.
After the loop in step 2 is over, pop all the elements from the stack and print -1 as the next element for them.
Computer Networks in depth and coding question
DHCP, DORA Process,
DNS,
Complete flow when you trigger amazon.com,
Port Numbers,
Troubleshoot questions
Tip 1: Learn Computer Networks in depth



loyd’s Cycle-Finding Algorithm
Approach: This is the fastest method and has been described below:
Traverse linked list using two pointers.
Move one pointer(slow_p) by one and another pointer(fast_p) by two.
If these pointers meet at the same node then there is a loop. If pointers do not meet then linked list doesn’t have a loop.
Managerial Round
1. Why have you used this particular tech stack?
2. What challenges did you face?
Behavioral Questions based on Amazon Leadership Principles
Tip 1: MUST GO THROUGH AMAZON LEADERSHIP PRINCIPLES (Most Important)
Bar Raiser
1. Where do you see yourself after 5 years?
2. How will you handle team dispute situations?
Tip 1 : MUST GO THROUGH AMAZON LEADERSHIP PRINCIPLES (Most Important)

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?