Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 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.
This was a coding test where we had to solve 2 coding questions in 60 minutes.



1. Buying a stock and then selling it is called one transaction.
2. You are not allowed to do multiple transactions at the same time. This means you have to sell the stock before buying it again.
Input: ‘n’ = 7, ‘prices’ = [3, 3, 5, 0, 3, 1, 4].
Output: 6
Explanation:
The maximum profit can be earned by:
Transaction 1: Buying the stock on day 4 (price 0) and then selling it on day 5 (price 3).
Transaction 2: Buying the stock on day 6 (price 1) and then selling it on day 6 (price 4).
Total profit earned will be (3 - 0) + ( 4 - 1) = 6.
The goal is to discover a local minimum of every growing sequence by traversing the given list of prices. We can make the most money by purchasing shares at the beginning of each ascending sequence (local minimum) and selling them at the end (local maximum).
Steps :
1.Find the local minima and store it as starting index. If not exists, return.
2.Find the local maxima. and store it as an ending index. If we reach the end, set the end as the ending index.
3. Update the solution (Increment count of buy-sell pairs)
4. Repeat the above steps till the end is not reached.



A Subsequence of a string is the one which is generated by deleting 0 or more letters from the string and keeping the rest of the letters in the same order.
Recursion can be used to solve this problem. For every character of the input string there are two options, one is to include it in the current subsequence and another is not including it in the current subsequence. This will lead to all possible subsequences of the input string.
Algorithm:
Take an empty set and an empty list to store all the subsequences.
Base Case: If there are no more characters in the string to include in the current subsequence, that means that the current subsequence is done.
Check if the current subsequence already exists in our answer, otherwise append it in the final answer.
If there are still letters left to process in the input string:
Iterate over the letters and once append the current letter in the current subsequence and proceed further.
And once don’t include the current letter in the current subsequence and proceed further.
This was a technical round where the interviewer asked me questions related to OS and Java.
What is critical section problem?
Critical section is the code segment of a process in which the process may be changing common variables, updating tables, writing a file and so on. Only one process is allowed to go into critical section at any given time (mutually exclusive).The critical section problem is to design a protocol that the processes can use to
co-operate. The three basic requirements of critical section are:
1. Mutual exclusion
2. Progress
3. bounded waiting
Bakery algorithm is one of the solutions to CS problem.
How can we create a thread in java?
There are two ways to create a thread in Java:
1) By extending Thread class :
The Thread class provides constructors and methods for creating and operating on threads. The thread extends the Object and implements the Runnable interface.
// start a newly created thread.
// Thread moves from new state to runnable state when it gets a chance, executes the target run() method
public void start()
2) By implementing Runnable interface.
Any class with instances that are intended to be executed by a thread should implement the Runnable interface. The Runnable interface has only one method, which is called run().
// Thread action is performed
public void run()
Typical HR round with behavioral questions.
1. Asked many questions about work in current workplace
2. How my current job work can be used in Quickr?
3. Some more questions asked related to work done in current job and how can it be useful in Quikr?
Tip 1 : The cross questioning can go intense some time, think before you speak.
Tip 2 : Be open minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.
Tip 3 : Context of questions can be switched, pay attention to the details. It is okay to ask questions in these round, like what are the projects currently the company is investing, which team you are mentoring. How all is the work environment etc.
Tip 4 : Since everybody in the interview panel is from tech background, here too you can expect some technical questions. No coding in most of the cases but some discussions over the design can surely happen.
Given a wood of some size. It burns from 1 end to another and takes 30 min. How to burn the same wood in 15 min.?
Burn the same wood from both end at same time.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?