Tip 1 : Prepare Aptitude from Indiabix
Tip 2 : Learn theoretical concepts of your preferred programming language
Tip 3 : Prepare Strings and array questions for online coding rounds
Tip 1 : Mention some development projects
Tip 2 : Try to make a simple resume with relevant skills related to your job profile



If the given grid is this:
[7, 19, 3]
[4, 21, 0]
Then the modified grid will be:
[7, 19, 0]
[0, 0, 0]
Step 1 : I solve this problem with brute force approach.
Step 2 : I transverse through all elements of the matrix using loops.
Step 3 : I change the value of entire row and column to zero if I find any zero element.


The width of each bar is the same and is equal to 1.
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].
Output: 10
Explanation: Refer to the image for better comprehension:

You don't need to print anything. It has already been taken care of. Just implement the given function.
Step 1 : Traverse the array from start to end.
Step 2 : For every element, traverse the array from start to that index and find the maximum height.
Step 3 : traverse the array from the current index to end, and find the maximum height (b).The amount of water that will be stored in this column is min(a,b) - array[i], add this value to the total amount of water stored
Step 4 : Print the total amount of water stored.
What is object oriented programming give real life examples of different type of OOPS concept?
What is inheritance and its types?
Different types of overriding method.
What is Super() in python?
What is lambda function?
If you are a owner of panipuri shop. Where would you open the shop to gain maximum profit?
This round is also known as leadership discussion round in which one of their senior leader will judge you whether you are a good fit or not
Introduce yourself. Why you wanted to be in software industry?
Where would you see yourself in five years?
What is success for you?
What are your weaknesses and how you are overcoming them?
What will you give to the company and what will the company will give you if we hire you?
Did you ever participated in a Hackathon? What was your experience there?
Introduce yourself and why you want to join Incedo?
Core values of incedo. After that she told me about the salary and various activities that Incedo does for his employee.
Tip 1 : Learn about Incedo a bit through their website

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