Tip 1 : Prepare the basics which is going to play major role in your selection.
Tip 2 : Don't forget to work on programming skills
Tip 1 : Should know what you've written in your resume.
Tip 2 : Have some projects on resume
Will contain Basic Java MCQ question along with 2 programming questions
Find second largest salary from the employee table
Tip 1 : Practice DBMS and SQL regularly.
Tip 2 : Learn basic concepts
It was nice experience



A doubly linked list is a kind of linked list that is bidirectional, meaning it can be traversed in both forward and backward directions.
Input:
4
4 3 2 1
This means you have been given doubly linked list of size 4 = 4 <-> 3 <-> 2 <-> 1.
Output:
1 2 3 4
This means after reversing the doubly linked list it becomes 1 <-> 2 <-> 3 <-> 4.
It was good experience

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What does the SQL function NOW() return?