Tip 1 : Focus on graphs every interviewer ask at least one graph question
Tip 2 : Read about amazon leadership principles and STAR
Tip 3 : Make 2-3 good personal projects, interviewers ask about questions about personal projects.
Tip 1 : Make 2-3 good personal projects, interviewers ask about questions about personal projects.
Tip 2 : Make a single page resume
- Morning time
- Environment was good.
- No
- Interviewer was good



If a lamp is present at index 'I', then it illuminates index 'I' - 1, 'I' and 'I' + 1.
If a lamp is present at index 0, then it illuminates only 0 and 1.
Given that the length of the string is greater than or equal to 2.
If a lamp is present at the last index, then it illuminates the last and the second last index, given that the length of the string is greater than or equal to 2.
The length of each string is guaranteed to be at least 1.
s1 - Check minimum number of fountains that must be switched on to cover the road.
s2 - Apply array concept of data structures
s3 - to mini (1+0), 3) gives range = 1 to 1



The profit of the Mukesh Business over ‘N’ days is shown by array/list ‘profit’. It may contain negative values as there will be a loss on those days.
s1 - Apply Start Time, End Time and Profit formula
s2 - Each of the next ‘3n’ lines
s3 - Solve with merge sort
- Morning time
- Environment was good.
- No
- Interviewer was good



insert(X): Inserts an element X in the data structure and returns true if the element was not present, and false otherwise.
remove(X): Removes the element X from the data structure, if present. Returns true if the element was present and false otherwise.
search(X): Search the element X in the data structure. Returns true if the element was present and false otherwise.
getRandom(): Return a random element present in the data structure.
Type 1: for insert(X) operation.
Type 2: for remove(X) operation.
Type 3: for search(X) operation.
Type 4: for getRandom() operation.
It is guaranteed that at least one element will be present in the data structure when getRandom() operation is performed.
Can you implement every operation such that it works in O(1) time?
s1 - Apply CURD operation
s2 - Apply element X in the data structure and returns true if the element was not present, and false otherwise.
s3 - Check for getRandom() operation.,at least one element will be present in the data structure.
What are semaphores?
What is virtual memory?
Tip 1 : Read Galvin for OS thoroughly.
Tip 2 : Do practice for SQL queries.


If the grid is:
1 2
3 4
We can collect points from all cells as each cell lies on a diagonal. So, the maximum points will be 1+2+3+4 = 10.
- Morning time
- Environment was good.
- No
- Interviewer was good
1. Why did you decide to apply to this role?
2. What experience do you have that would be relevant to this role?
3. Tell me about your experience in …
4. What did you like most about the job description?
5. Why are you leaving your current job? / Why did you leave your previous job?
6. What do you know about our company’s product/services?
7. Tell me about this gap in your resume.
Tip 1 : Keep your communication good
Tip 2 : Drees well and practice mock
Tip 3 : Be confident while speaking

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?