Tip 1 : Prepare the basics of any Programming Language and Prepare OOPs concepts in detail with real life Scenarios
Tip 2 : You should be familiar in writing code on Paper ,So practice
Tip 3 : you should be well prepare your Computer subjects like DBMS ,Networks ,Operating Systems
Tip 1 : Should mention Internship Experience
Tip 2 : Should elaborate the Projects and the Tech stack you worked on
In afternoon ,In This round there are aptitude questions and MCQs on Java concepts ,DBMS ,OOPs and 1 Coding question
what is Normalization
Tip 1 : Just familiar with Basics
Just be confident on the Topic
Night



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?
Tip 1:Initialize three pointers prev as NULL, curr as head and next as NULL.
Iterate through the linked list. In loop, do following.
// Before changing next of current,
// store next node
next = curr->next
// Now change next of current
// This is where actual reversing happens
curr->next = prev
// Move prev and curr one step forward
prev = curr
curr = next
oops concepts with real life scenarios low level design
DBMS
If you have been asked to JOIN tables, try to find a column that exists in each of the tables. In this example, it is the department_id column.
Tip 1 : SELECT *
FROM employees
JOIN departments
ON employees.department_id = departments.department_id;
Tip 2:
Tip 3:
They asked the few technical question
They asked the OSI layer of Computer Networks
Tip 1 : They mainly check your english Fluency, Willing to relocate and your behavior and how you can contribute to the company

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?