Tip 1 : Choose any Object-oriented Programming Language.
Tip 2 : Practice DSA from all topics, and try to maintain a consistency.
Tip 3 : Be prepared with atleast 2 Projects.
Tip 1 : Be concise and don't use fancy fonts.
Tip 2 : Be honest and try to highlight your achievements.
The test was conducted online mode, in the afternoon. The test was completely proctored (your mic and camera should always on).
Design a text editor with a cursor that can do the following:
I used two stacks for maintaining the last activities efficiently. After applying some OOPS and Stacks concept i was able to solve this problem.
The test was conducted online mode, in the afternoon. The test was completely proctored (your mic and camera should always on.



If A = [3, 2, 3], and K = 2.
Then max of [3, 2] = 3 and max of [2, 3] = 3
So, the answer will be [3, 3]
If A = [3, 2, 3, 5, 1, 7] and K = 3.
Then max of [3, 2, 3] = 3
Then max of [2, 3, 5] = 5
Then max of [3, 5, 1] = 5
Then max of [5, 1, 7] = 7
So the answer will be [3, 5, 5, 7]
Can you solve the problem in O(N) time complexity and O(K) space complexity?
I used the concept of deque to solve this problem.



I solved this using 0-1 knapsack algorithm and applied to backtracking for printing selected items
The topic for Group Discussion was "Effect of Artificial Intelligence on Employment", it was conducted on online mode with camera and mic on.
What do you think of the Effect of Artificial Intelligence on Employment?
Tip 1 : Stay patient wait for your turn to speak
Tip 2 : Produce facts with your words
This was a one-o-one technical interview round and was conducted in online mode.
Tip 1 : Be Prepared with Java Core Concepts.
Tip 2 : Be prepared with OOPs Concepts.
Like others rounds, this round was also conducted in online mode.
Tip 1 : Be confident and honest.
Tip 2 : Be prepared with situation based problems.

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