Tip 1 : Practice some machine coding questions with time limit
Tip 2 : Filter for specific questions to company in which you are applying.
Tip 3 : Practice regularly.
Tip 1 : Use overleaf for creating your resume
Tip 2 : It should be single page
Use Machine coding fundamentals to create an application similar to VI Editor.
Tip 1 : Take time and see what all you can achieve in given time frame
Tip 2 : Choose proper data structure
3 questions were asked and I was asked to write code in google docs so practice problems without ide as well



1. get(key) - Return the value of the key if the key exists in the cache, otherwise return -1.
2. put(key, value), Insert the value in the cache if the key is not already present or update the value of the given key if the key is already present. When the cache reaches its capacity, it should invalidate the least recently used item before inserting the new item.
Type 0: for get(key) operation.
Type 1: for put(key, value) operation.
1. The cache is initialized with a capacity (the maximum number of unique keys it can hold at a time).
2. Access to an item or key is defined as a get or a put operation on the key. The least recently used key is the one with the oldest access time.
I have practiced similar problems on various platforms so it was simple
Managerial Round
Share information and design of existing projects
Tip 1 : Always be honest.
Tip 2 : Be confident while answering.

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?