Tip 1: Try it even if you are stuck on the problem. The interviewer will help you.
Tip 2: Prepare Data Structures and Algorithms well. They mainly check our Problem-solving ability to find solutions to real-world problems.
Tip 3: Be confident enough, don't be nervous. Maintain at least two projects on your resume.
Tip 1 : Mention atleast 2 projects.
Tip 2 : Mention your skills in which you are perfect.
Tip 3 : It should not be too long or too short
It was in the morning. The 1st round was online coding + MCQ round. It had 3 sections in total to be solved in 40mins.Questions were mainly from Data structure, OS, DBMS, SQL.

Let Arr[] = {1, 1, 1, 4, 1, 2, 4}, K=2
The given array can be split into two sub-arrays {1, 1, 1, 4}, {1, 2, 4}. The total cost will be for the first sub-array - 2+ 3(frequency of 1 is 3 in the first sub-array) + for the second sub-array - 2, Hence total cost is 7.



A subsequence is a sequence that can be derived from another sequence by zero or more elements, without changing the order of the remaining elements.
It was conducted in the evening around 4:30PM-5:30PM. Questions were bit difficult. Questions were mainly from Data Structures and there was total of 3 questions.



Let an array ‘arr’ = [2,2,1,1].
In this example, the array can be split like this [2,2], [1,1] in this
case the first and last occurrence of 2 lies in a first subarray and
similarly first and the last occurrence of 1 lies in a second
subarray.

Input:
N = 4
M = 1
K = 3
A[] = {5, 4, 1, 1}
Output
1
The given array can be split like this [5], [4], [1] there are three consecutive non-overlapping subarrays.
It was in the evening. Interviewer first ask simple questions to keep me calm and it was nice interaction with her the environment created by her was very interesting to answer
On a scale of 1 to 10 how would you rate yourself as a leader?
What makes you angry?
Tip 1 : Research about the company thoroughly
Tip 2 : Avoid any kind of hesitation while giving the answers
Tip 3 : Try to give practical and optimized approaches which shows some professionalism in you.

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