Tip 1 : Prepare some Projects
Tip 2 : Practice At least 250 Questions of DS algo
Tip 3 : Do at least 2 application based projects
Tip 1 : Add some application based projects in your resume.
Tip 2 : Do not put false things on resume.
Conceptual and Code Analysis based MCQ after that there was a coding challenge and Database queries.



Create an auxiliary array temp[] to store unique elements.
Traverse input array and one by one copy unique elements of arr[] to temp[]. Also keep track of count of unique elements. Let this count be j.
Copy j elements from temp[] to arr[] and return j


Input: ‘n’ = 7, ‘prices’ = [100, 80, 60, 70, 60, 75, 85]
Output: [1, 1, 1, 2, 1, 4, 6]
Explanation:
On the sixth day, when the stock price was 75,
The span came out to be 4 because the last three prices(plus today) were less than the current or the sixth day's price.
Similarly, we can deduce the remaining results.
You don’t need to print anything. Just implement the given function
We see that S[i] on the day i can be easily computed if we know the closest day preceding i, such that the price is greater than on that day than the price on the day i. If such a day exists, let’s call it h(i), otherwise, we define h(i) = -1.
The span is now computed as S[i] = i – h(i).
I was asked some questions from DS algo + DBMS. Few Aptitude questions were asked and few questions on Project were also asked.



In the given linked list, there is a cycle, hence we return true.

1. Traverse linked list using two pointers.
2. Move one pointer(slow_p) by one and another pointer(fast_p) by two.
3. If these pointers meet at the same node then there is a loop. If pointers do not meet then linked list doesn’t have a loop.

Input: ‘N’ = 5, ‘K’ = 1
Output: YES
5 in binary can be written as 101 and as we can see a first bit from the right of 5 is set so the answer is 'YES'.
if((n&(1< print("Set")
}else{
print("Not set")
}
Basic HR Questions were asked
1. Introduction.
2. Why do you want to join this organisation?
3. Where do you see yourself in next 5 years?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: