Tip 1 : Prepare your resume well and bold out the important skills/achievements
Tip 2 : Practice at least 150 medium level questions from online platforms
Tip 3 : Make sure to have 1 Major project and 2 Minor project in your resume
Tip 1 : Don't include local certifications
Tip 2 : Only write those skills which you possess or can talk about
It was conducted on evening 5 pm to 8 pm. We got a mail to login 30 minutes before the scheduled test. The test was proctored. there were 3 sections : aptitude, debugging and coding.



Input: 'a' = [2, 4, 6] and 'b' = [1, 3, 5]
Output: 3.5
Explanation: The array after merging 'a' and 'b' will be { 1, 2, 3, 4, 5, 6 }. Here two medians are 3 and 4. So the median will be the average of 3 and 4, which is 3.5.
I did it by first getting medians of the two sorted arrays and then comparing them.
Median = (max(ar1[0], ar2[0]) + min(ar1[1], ar2[1]))/2



Let arr = [-2, 0, 5, -1, 2]
and K = 4
We will output 10 as we replace -2 by 2, -1 by 1, 0 by 0, and 0 by 0.
We can apply the flip operation to the same element multiple times
This problem has a very simple solution.
Replace the minimum element arr[i] in the array by -arr[i] for the current operation.
In this way, we can make sum of the array maximum after K operations.
It was an interview round where I was asked about both of my projects and the technologies used, motivation behind the project, difficulties faced and the internships which I mentioned in my resume. It consisted of some OS and DBMS questions and a problem to code.
Tip 1 : Focus on OS fundamentals
Tip 2 : Use internet to get some frequently asked questions of OS
Tip 1 : Focus on DBMS fundamentals
Tip 2 : Use internet to get some frequently asked questions of DBMS



Step 1 : Get the number to check for palindrome.
Step 2 : Hold the number in temporary variable.
Step 3 : Reverse the number.
Step 4 : Compare the temporary number with reversed number.
Step 5 : If both numbers are same, print "palindrome number"
Step 6 : Else print "not palindrome number"
Step 1 : Get the number to check for palindrome.
Step 2 : Hold the number in temporary variable.
Step 3 : Reverse the number.
Step 4 : Compare the temporary number with reversed number.
Step 5 : If both numbers are same, print "palindrome number"
Step 6 : Else print "not palindrome number"
HR welcomed me and asked about my past life and achievements. It was a normal HR Round
Tip 1 : Prepare beforehand your weaknesses and strengths
Tip 2 : Tell the interviewer about how will you turn your weaknesses into strengths
Tip 3 : Always maintain a decent smile on face

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