Tip 1 : Hands on Coding questions from LeetCode.
Tip 2 : Do atleast 2 project
Tip 1 : Highlight skills with Bold format
Tip 2 : Keep some projects in resume
- Morning time
- Environment was good.
- No
- Interviewer was good



Input: 'N' = 3, ‘ARR’ = [1, 2, 3]
Output: 3
It is possible to make all elements of the given array equal by three moves only. There is no possible solution that can perform the task in minimum moves than 3.
[1, 2, 3] => [2, 3, 3] => [3, 4, 3] => [4, 4, 4]


1. If GRAPH[X][Y] = 1, then the node ‘X’ is directly connected to a node ‘Y’. Otherwise, there is not a direct connection between ‘X’ and ‘Y’.
2. If we remove a node, we must also remove its connections to any other node.
3. If multiple such nodes exist that can minimize the value of ‘INFECTED’, you have to find the node with the smallest index.
4. All nodes in the array ‘INITIAL’ are unique.
5. You have to return the ‘index’ of the node, not the minimum value of the ‘INFECTED’.


If X = 6
If all three moves are taken to the right then the robot will end up at 1 + 2 + 3 = 6, so a minimum of three moves are needed.



In the corners of an equilateral triangle are three ants. All the three ants move in a random direction along the triangle edges. Can you calculate the probability of ants not colliding at all along with the triangle?
Tip 1: Practice RS Aggarwal aptitude questions
Answer-
As a result, the ants must all travel in either a clockwise or counter-clockwise direction, reducing your initial 50% chance of the ants colliding to a 25% chance since half of 50 is 25.
- Morning time
- Env. was good.
- No
- Interviewer was good
- Tell me about yourself
- How would you describe yourself?
- Have you ever been terminated from a job?
- What three factors do you attribute to your success in life?
Tip 1 : Practice mock questions
Tip 2 : Follow any website for HR questions

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