Tip 1 : Make your resume attractive by adding good projects and achievements
Tip 2 : Start your preparation early and Apply for all opportunities .
Tip 3 : Solve DSA problems on regular basis
Tip 1 : Add good projects
Tip 2 : Don't lie in your resume
It was a medium level interview round for me conducted on hackerrank



A sequence 'A' is a subsequence of a sequence 'B' if 'A' can be obtained from 'B' by deletion of several (possibly, zero) elements. For example, [3,1] is a subsequence of [3,2,1] and [4,3,1], but not a subsequence of [1,3,3,7] and [3,10,4].
What is the time complexity of finding an element in a binary search tree with n elements?
What is the time complexity to find an element in a linked list of length n?
Tip 1:For data structures and algorithm part you should have a good knowledge of time complexity and space complexity
Tip 2:Dont answer the questions you don't know, tell them that you will revise this point
Tip 3:
It was easier that first round for me and interviewer also asked some oops concepts after coding question



You can only move down or right at any point in time.
We will have f[i][j] = minimum sum we can get in the i x j grid, so we can see that to because we can just move either down or right at any point in time, therefore we can calculate f[i][j] = grid[i][j] + min(f[i-1][j],f[i][j-1]). By observation we can see that f[i][j] is only dependent on i-1 (previous row) and j-1 (previous column) so we do not need to create a f[i][j] array, to save space we just need to have a f[j] array to store each row and calculate at the same time.
What is difference between micro kernel and macro kernel?
Tip 1: Just keep notes of core subjects and keep revising it
Tip 2: for DBMS revise SQL queries.
Tip 3:
Give an example of DCL commands
Why MySql is better than excel
Tip 1:Just have a clear knowledge of any core subjects
Tip 2:Even if these subjects are not taught in your semester or branch just keep a note of these topics
What is a long term scheduler & short term schedulers?
Tip 1:
Tip 2:
Tip 3:

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