Tip 1 : practice DSA consistently
Tip 2 : focus on other skills like web d etc cloud etc
Tip 3 : communication play a important role
Tip 1:DSA product based
Tip 2: All internship details
Round 1 core dsa
Round 2 oops
Round 3 hr
Given an SQL query find the union of the query
Tip 1:DSA regularly
Tip 2:gfg also
Tip 3: ps skills
what is virtual memory
Tip 1:Core subject
Tip 2: Learn core subject and practice questions on that
Tip 3: Try to take mock interview guide from gfg and other sources.
what are set and disjoint?
what are deadlock .
explain round Robin algorithm.
how is cpu designed?
Oops DBMS and resume based questions



For the given binary tree

The level order traversal will be {1,2,3,4,5,6,7}.
Pop NodeDetails from the queue in temp.
Check whether the current array element can be a left child of the node in temp with the help of min and temp.data values. If it can, then create a new NodeDetails structure for this new array element value with its proper ‘min’ and ‘max’ values and push it to the queue, and move to next element in arr[].
Check whether the current array element can be a right child of the node in temp with the help of max and temp.data values. If it can, then create a new NodeDetails structure for this new array element value with its proper ‘min’ and ‘max’ values and push it to the queue, and move to next element in arr[].
Repeat steps 1, 2 and 3 until there are no more elements in arr[] or there are no more elements in the queue.



Input : 1 -> 2 -> 3 -> 4 -> 'NULL' and 'K' = 2
Output: 1 -> 2 -> 4 -> 'NULL'
Explanation:
After removing the second node from the end, the linked list become 1 -> 2 -> 4 -> 'NULL'.

To delete the last node of a linked list, find the second last node and make the next pointer of that node null.


1. If the list is empty, the function immediately returns None because there is no middle node to find.
2. If the list has only one node, then the only node in the list is trivially the middle node, and the function returns that node.
Traverse the whole linked list and count the no. of nodes. Now traverse the list again till count/2 and return the node at count/2.
Hr round all the general questions
Introduce yourself
Tell me about your strengths and weakness
why Tata Digital?

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