Tip 1 : Practice maximum question
Tip 2 : dry run all code
Tip 1 : Do not put false things on resume
Tip 2 : make short resume
Conversion method in which users, being used to an old system, continue to use the old system, along with the new system, is
The records in a file on magnetic tape
If a process fails, most operating system write the error information to a ______
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?
It was in afternoon and there were 3 members panel.



Consider 0-based indexing.
Consider the array 1, 2, 3, 4, 5, 6
We can Jump from index 0 to index 1
Then we jump from index 1 to index 2
Then finally make a jump of 3 to reach index N-1
There is also another path where
We can Jump from index 0 to index 1
Then we jump from index 1 to index 3
Then finally make a jump of 2 to reach index N-1
So multiple paths may exist but we need to return the minimum number of jumps in a path to end which here is 3.



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.
It was happened at 4 PM on 13th October.



I was given code on python threading concept.
I used threading.main_thread() function to get the main thread object. but i exactly didn't remember how to use correctly so this question didn't go well.



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.
I did first Traverse the whole Linked List and keeping the node’s data into the stack and did pop to element to out of stack and update doubly linked list. but i faced time complexity error and i did much struggle to solve this
Tell me about yourself.
In five years, where do you see yourself?
salary discussion

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you exit a loop prematurely?