Tip 1 : Practice a maximum question
Tip 2 : dry run all code
Tip 1 : Do not put false things on resume
Tip 2 : make short resume
It was technical round
Technical Question 1
The conversion method in which users, being used to an old system, continue to use the old system, along with the new system, is
Technical Question 2
The records in a file on magnetic tape
Technical Question 3
If a process fails, most operating system write the error information to a ______
Technical Question 4
The height of a BST is given as h. Consider the height of the tree as the no. of edges in the longest path from root to the leaf. The maximum no. of nodes possible in the tree is?
Be confident while answering and clear your basics first
Three coding problems were asked by the interviewer



N = 5
JUMP = [1,2,3,4,5]
ANSWER:- The answer should be YES as you can jump from 1st index to 2nd index, from 2nd index to 4th index, and from 4th index to 5th index.
I applied greedy algorithm



You need to return the head to the doubly linked list.
The doubly linked list would be: 1 2 3 4 5 and can be represented as:

first read complete statement of problem, First i did in-order traversal, doing in-order traversal, while doing previously visited node in a variable, For every visited node, make it next to the previous and set previous of this node as previous.



Two nodes are said to be adjacent to each other if they are directly connected to each other. This means that if a node is taken as part of the sum, then none of its children can be considered for the same and vice versa.
For the given binary tree

Nodes used in consideration for maximum sum such that no two of them are adjacent are highlighted. Maximum sum of nodes = 1 + 1 + 1 + 4 + 5 = 12.
Apply graph algorithm
Design Flipkart using LLD
Tip 1: Scope the problem
Tip 2: Make reasonable assumptions
Tip 3: Draw the major components
Tip 4: Identify the key issues
Tip 5:Redesign for the key issues

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