Tip 1 : Practice Atleast 250 Questions
Tip 2 : Prepare atleast 2 good projects
Tip 3 : Communication skills should be good.
Tip 1 : Be honest with your resume.
Tip 2 : Resume should be crisp and short.
It consisted of DSA, logical and numerical reasoning, quantitative aptitude, Networking, OS questions.


Consider the starting array: [1, 1, 1, 1]. You can update any index of this array with 4 (the sum of all elements of the current array).
This test was taken on Accolite Digital platform named Eduthrill.
These are the stepsgiven below.
Take the target array first.
Initialize result(the varibale that we need to return ) as 0.
If all are even, divide all elements by 2
and increment result by 1.
all odd elements, make them even by
reducing them by 1. and for every reduction,
increment result by 1.
Finally, we get all zeros in target array.



‘?’ – matches any single character
‘*’ – Matches any sequence of characters(sequence can be of length 0 or more)
Interview held in eveing. It went around for 1 hour.The interviewer was very helpful.



Input: Let the binary tree be:

Output: [10, 4, 2, 1, 3, 6]
Explanation: Consider the vertical lines in the figure. The top view contains the topmost node from each vertical line.
I was not able to solve at first go but i didnt give up. I spent 30 minutes on it. i was trying and telling every approach to the interviewer.
In the end he gave me a little bit idea and then i told him brute force approach.



I explained this question using Floyd’s Cycle-Finding Algorithm. then he gave me many test cases i explained every test case to him.
Interview held in eveing. It went around for 1 hour.The interviewer was very helpful.



Conditions for valid parentheses:
1. All open brackets must be closed by the closing brackets.
2. Open brackets must be closed in the correct order.
()()()() is a valid parentheses.
)()()( is not a valid parentheses.
It was an easy-medium level problem. I used stack for this question. I explained him every corner case. He was satisfied with the solution.



If the input string is ‘str’ = ”aazbbby”, then your output will be “azby”.
Note that we are just removing adjacent duplicates.
I solved this question in 0(n) and he was happy with the solution.
It was held in evening.
Introduce yourself.
Why Accolite Digital?
Where do I see myself in 5 years?
Tip 1 : Be confident
Tip 2 : Dont lie
Tip 3 : Good communication skills.

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?