Tip 1 - Practice Atleast 250 Questions from geeks from geeks and coding ninjas
Tip 2 - Ex- Do atleast 2 good projects
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume and be confident.
2 coding questions



This is a variation of the standard problem: “Counting the number of connected components in an undirected graph”.



[1, 2, 3, 4] is a strictly increasing array, while [2, 1, 4, 3] is not.
Formally, the length of the longest increasing subsequence ending at index i, will be 1 greater than the maximum of lengths of all longest increasing subsequences ending at indices before i, where arr[j] < arr[i] (j < i).
2 coding questions



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].
A simple solution is to run two nested loops. The outer loop picks an element one by one. The inner loop, find the previous element that is greater.
1. Brief Introduction.
2. Describe projects I had worked on.
3. Some technical questions on the projects.
4. Explain a situation where you had to go deep to resolve an issue.
5. Design a file sharing system with Version control of files. (Dropbox)
1. Brief Introduction.
2. Describe projects I had worked on.
3. Some technical questions on the projects.
4. Explain a situation where you had to go deep to resolve an issue.
5. Design a file sharing system with Version control of files. (Dropbox)

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?