Tip 1 - Practice Atleast 250 Questions from geeks from geeks and coding ninjas
Tip 2 - Ex- Do atleast 2 good projects
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume and be confident.
2 coding questions



Down: (row+1,col)
Down left diagonal: (row+1,col-1)
Down right diagonal: (row+1, col+1)
We are given a matrix of N * M. To find max path sum first we have to find max value in first row of matrix. Store this value in res. Now for every element in matrix update element with max value which can be included in max path. If the value is greater then res then update res. In last return res which consists of max path sum value.



Both the strings have only lowercase English alphabets.
There may be more than one correct solution, you have to return any one of the possible solutions.
2 coding questions
Given a function foo() that returns integers from 1 to 5 with equal probability, write a function that returns integers from 1 to 7 with equal probability using foo() only.
We know foo() returns integers from 1 to 5. How we can ensure that integers from 1 to 7 occur with equal probability?
If we somehow generate integers from 1 to a-multiple-of-7 (like 7, 14, 21, …) with equal probability, we can use modulo division by 7 followed by adding 1 to get the numbers from 1 to 7 with equal probability.

Input: 'X' = 2, ‘Y’=3
Output: "6"
As “6” is the smallest number that is divisible by both 2 and 3.
A simple solution is to find all prime factors of both numbers, then find union of all factors present in both numbers. Finally, return the product of elements in union.
1. How was your day?
2. Where are you from?
3. Tell me 8 negative points about yourself.
4. 3 things you are passionate about.
5. Some general questions.
1. How was your day?
2. Where are you from?
3. Tell me 8 negative points about yourself.
4. 3 things you are passionate about.
5. Some general questions.
Tip 1: Be confident
Tip 2: Be honest

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