Tip 1 : Solve Aptitude and Problem Solving Books.
Tip 2 : Practice Coding questions from geek for geeks.
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.
- Evening time
- Environment was good.
- No
- Interviewer is good












1. The length of each array is greater than zero.
2. The first index of each array is the most significant digit of the number. For example, if the array A[] = {4, 5, 1}, then the integer represented by this array is 451 and array B[] = {3, 4, 5} so the sum will be 451 + 345 = 796. So you need to return {7, 9, 6}.
3. Both numbers do not have any leading zeros in them. And subsequently, the sum should not contain any leading zeros.



If the array of strings is: {co, code, studio, codingninjas, coding, debug, coder, cipher}
Then the original cost of the array is 2 + 4 + 6 + 12 + 6 + 5 + 5 + 6 = 46.
If we select the new string as “cod” and delete the matching prefixes if exists then the array becomes: {co, e, studio, ingninjas, ing, debug, er, cipher}, and the cost now becomes: 2 + 1 + 6 + 9 + 3 + 5 + 2 + 6 = 34.
You can check for any other possible string, the cost will not become less than 34, hence the optimal answer for this case is “cod”.
- Morning time
- Environment was good.
- No
- Interviewer was good
1- How would your current manager describe you?
2- What would you change about your current job description?
3- How do you stay organized in your current position?
Tip 1 : Communication skills is must
Tip 2 : Give mock tests.9

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?