Tip 1 : Study each subject deeply. Have your basics strong.
Tip 2 : Practice coding questions daily
Tip 3 : Make proficiency in any one language like python or java or JavaScript.
Tip 4 : Learn at least one framework familiar like : Django, Nodejs, React js, spring boot. And at least two project based on fronted and back-end technology mixture.
Tip 5: Do projects and internships
Tip 1 : Go through your resume thoroughly, and be ready to answer questions from your resume.
Tip 2 : Project is necessary based on trending technology
Tip 3 : Include some projects
Tip 4 : Do not lie in resume ever
It was a proctored online test using a friendly hackerrank platform to conduct the test. The test was smooth and went well. It was little bit difficult.



Perform each query on the original array only i.e. every output should be according to the original order of elements.
Let the array be [1, 2, 3, 4, 5, 6] and the queries be {2, 4, 1}. For every query, we’ll perform the required number of left rotations on the array.
For the first query, rotate the given array to the left by 2 elements, so the resultant array is: [3, 4, 5, 6, 1, 2].
For the second query, rotate the given array to the left by 4 elements, so the resultant array is: [5, 6, 1, 2, 3, 4].
For the third query, rotate the given array to the left by 1 element, so the resultant array is: [2, 3, 4, 5, 6, 1].


If 'ARR' contains the following elements [ 1, 2, 3, 4, 5 ], then you should return another array that is equal to [ 5, 4, 3, 2, 1].
This round is basically to check our technical concepts. It was like an interaction round between the technical manager and us.
Involved some basic question based on DSA and Java script framework.
fragmentation and segmentation
And basic concepts of OS like deadlock
virtual memory etc.
sql
joins
and give one problem solving question
mysql and database.
It was easy round . In this round interviewer basically ask behavioral questions.
What makes you angry?
Are you open to take risks? or Do you like experimenting?
Tip 1 : Be loyal
Tip 2 : Read about company before going for an interview

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