Tip 1 : First practise DSA question topic wise, like I made a timetable in which I mentioned that like 2 days I will do sliding window problems, 2 days I will do stack problem etc. after you created this timetable after 1.5-2 month, you got habitual
Tip 2 : Also make at least 2 projects and in which you have to know insides and outside of that project
Tip 3 : DBMS is very important topic and MySQL queries is asked in every company interview, so don't take it lightly be prepared for it.
Tip 1: For fresher, you have at least 1 good project and 1 average level project in your resume and write at least 3-4 points of your project in your resume and highlight the keywords like "development" , "implementation", and technology etc.
Tip 2 : And be ready to answer any question asked from your resume, so please mentioned only that thing in which you feel confident
The round is scheduled at around 10:30AM in the morning and they Asked me 2 easy-medium coding question, after that asked me Java OOPs concept, and some OS questions also. Also I write two main language in my resume C++ and Java . So, he asked me which one did you prefer most to work in the organization. So, I choose Java.



A subarray is a contiguous block of elements that can be formed by deleting some (possibly zero) elements from the beginning or the end of the original array.
If the given array is [1, 2, 3, 4, 5], then [2, 3, 4], [1, 2], [5] are some subarrays while [1, 3], [2, 3, 5] are not.
If there are multiple subarrays with minimum length, find one which appears earlier in the array (i.e. subarray that starts with lower index).
If there is no such subarray, print an empty line.



If the given array is [1, 3, 2], then you need to return [3, -1, -1]. Because for 1, 3 is the next greater element, for 3 it does not have any greater number to its right, and similarly for 2.
They asked me about my projects that is mentioned in my resume then one easy level linked list question after that
some Mysql queries and also some Java Collections questions
Tip 1 : Know everything about your project
Tip 2 : Produce your answer with some facts



Asked some general/behavioral question, expectation etc.
Tip 1 : Be honest
Tip 2 : Reply with confidence and a slight smile

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