Tip 1 : Do medium to hard level questions on various platforms.
Tip 2 : Having Personal Projects on your resume helps
Tip 3 : Do some interships to gain industry experience.
Tip 1 : Never make resume of more than 1 page if you are a fresher
Tip 2 : Use professional templates for resume
The environment was nice no problems faced on platform.



Let us say we have array 'ARR' =[-1,3,5,-2,4,-9]. The longest sub-array with the positive product is [3,5,-2,4,-9].



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.
It was an online round with two interviewers.



Let S = “abdd” and X = “bd”.
The windows in S which contain all the characters in X are: 'abdd', 'abd', 'bdd', 'bd'.
Out of these, the smallest substring in S which contains all the characters present in X is 'bd'.
All the other substring have a length larger than 'bd'.
It was also a DS/algo round along with questions of system design.



1. The array may contain duplicate elements.
2. The array can also contain negative integers.
3. Every element of the subsequence must be greater than or equal to the previous element.
Design netlfix like website.
Hr round mainly focussed on strengths, weaknesses.
Introduce yourself
Why do you want to change your company?
What are your expectations regarding salary?
Tip 1 : Be confident
Tip 2 : Be firm
Tip 3 : Listen to the questions carefully and be polite

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?