Tip 1 : study data structures thoroughly
Tip 2 : study algorithms thoroughly
Tip 1 : have good projects in resume
Tip 2 : make complete resume in one page. Basically keep it short. So that it helps to go through easily
It was early morning online test on mettle platform


If ‘N’ = 5 and K = 2
[1, 2, 3, 4, 5]
Then the output will be [1, 4, 3, 2, 5].
1. Created a function
2. Used for loops
3. Optimization



The answer could be very large, output answer %(10 ^ 9 + 7).
1. Using recursion
2. Created recursion function
3. Optimization
It was in afternoon. For 1 hour. It was on Google meet. Interview was cool.



a) Duplicate elements may be present.
b) If no such element is present return -1.
Input: Given a sequence of five numbers 2, 4, 5, 6, 8.
Output: 6
Explanation:
In the given sequence of numbers, number 8 is the largest element, followed by number 6 which is the second-largest element. Hence we return number 6 which is the second-largest element in the sequence.
1. Created an array
2. Find second largest element
3. Optimization
What is normalization
Tip 1 : read rdbms thoroughly
Tip 2 : read korth book

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?