Tip 1 : Must do Previously asked Interviews Questions.
Tip 2 : Prepare OS, DBMS, OOPs, Computer Networks well.
Tip 3 : Prepare well for one project mentioned in the resume, the interviewer may ask any question related to the project, especially about the networking part of the project.
Tip 1 : Have at least 2 good projects mentioned in your resume with a link
Tip 2 : Focus on skills, internships, projects, and experiences.
Tip 3 : Make it simple, crisp, and one page
This was the online test held on the hackerrank platform consist of 20 MCQs(verbal, general aptitude, reasoning, english) and one coding questions of array.



Each product can cross the integer limits, so we should take modulo of the operation.
Take MOD = 10^9 + 7 to always stay in the limits.
Can you try solving the problem in O(1) space?
This was technical round based on core subjects , problem solving and project work.



• The reference to the head of the linked list is not given.
• The node to be deleted is not a tail node.
• The value of each node in the Linked List is unique.
• It is guaranteed that the node to be deleted is present in the linked list.

class Solution {
public void deleteNode(ListNode node) {
ListNode next = node.next;
node.val = next.val;
node.next = next.next;
}
}
Explanation -
Here in the question we are not given the HEAD pointer so there is no way we could delete the node directly from the list. Instead we think of another creative solution, We copy the next node's value to the node to be deleted and change the next pointer to the copied node's next pointer which simulates the deletion of the given node.
This was technical + HR round taken by the senior manager and HR from Josh Technology.
Tell me about yourself
Tell me about the most challenging project
Tell me about the basic pillars of OOPs
what are acid properties
Am I ready to relocate to any location in India
why did you choose this technology to make your project
how much load can your application handle
How will you resolve conflict with your manager
why should we hire you
will you join us if you get better offer from google
Tip 1 : Make sure your resume is up-to-date
Tip 2 : Be confident and focus on your communication
Tip 3 : Prepare for the behavioural questions

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?