Tip 1 : Don't stress, we have plenty of companies and plenty of chances to apply in any company
Tip 2 : Make short notes and do daily revision
Tip 3 : Be consistent with problem-solving and understand every topic completely
Tip 1 : Contact details on the top
Tip 2 : Put experience first and then education, and it should be in descending order, most recent on the top and then so on
Panel was super supportive, making me comfortable throughout. interview started around 3pm, got over by 4:10. they were concerned about time and space complexity.


If the given linked list is 3 ->4 ->0 ->5 ->0, you should return linked list as - 7 -> 5.
You need to replace the sum values in the linked list without using any extra space.
It is guaranteed that there will be no two consecutive zeroes in the linked list.



For the given example below, the trees are mirror images of each other.
They asked for pseudo code, I gave answer, then they questioned on the complexity and test cases in which code will fail, later they asked how can we improve the complexity



Input: Consider the binary tree A as shown in the figure:

Output: [10, 5, 3, 7, 18, 25, 20]
Explanation: As shown in the figure
The nodes on the left boundary are [10, 5, 3]
The nodes on the right boundary are [10, 20, 25]
The leaf nodes are [3, 7, 18, 25].
Please note that nodes 3 and 25 appear in two places but are considered once.
They asked for pseudo code, i gave answer, then they questioned on the complexity and test cases in which code will fail, later they asked how can we improve the complexity
Panel was super supportive, making me comfortable throughout. interview started around 4:30pm, got over by 5:50. asked a lot of questions on the type of data structures to use, also they were asking that assume we don't have concept of inheritance then how will we solve this problem and so on
Implement Visitor Pattern
Implement Singleton pattern
Difference between Singleton and Static. Implement them
What is Logger design? Implement it
Any other approach for logging other than singleton and static
How singleton is tightly coupled
Inheritance vs Association class - which one to choose - IS-A relationship choose inheritance, HAS-A choose association.
DB design
Implement No SQL based DB design
What is UML association?
Challenges faced while designing in office and my current project related questions
Panel was super supportive, making me comfortable throughout. interview started around 6:20pm, got over by 7:20. this was Managerial Round
What are your strengths and weakness?
Cn you list some of the challenges faced?
Are you willing to relocate?
What kind of work are you looking for?
Why do you want to switch?
If you will get similar work then what will you do?
What are the challenges faced?
What Complexity handled in current project?



We have a linked list 1->2->3->4->5->6->7 and so on. You are supposed to swap pairs of a linked list like swap (1,2), (3,4), (5,6), and so on.
1. You may not modify the data in the list’s nodes; only nodes themselves may be changed. Because imagine a case where a node contains many fields, so there will be too much unnecessary swap.
2. If a pair of a node does not exist, then leave the node as it is.
I took examples and then explained the question, later wrote pseudo code
Implement MOQ, Nunit
Explained how we are utilizing it in the current project

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?