Tip 1 : You need to have a great aptitude for knowledge
Tip 2 : Solve questions from previously asked coding questions
Tip 3 : Add at least two projects in your resume
Tip 1 : Make it simple and one page resume.
Tip 2 : Add projects in your resume which you have developed yourself
Tip 3 : Use Proper fonts in your resume
It was a technical interview in which they have given me coding questions on array and asked me to write working code for it. Also they have asked about my projects which I made in my college.



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.
Tip 1 : Try to cover all the edge cases while running the code
Tip 2 : Practice coding questions on online platforms
Tip 3 : Practice arrays and string related coding questions for the technical round
What is the real life use of the projects I made?
Which technology is used for making projects and why?
Which framework is used to develop the project?
Explain the functionality of the project.
Tip 1 : Practice coding questions on a notepad before your interview
Tip 2 : Try to explain the concept before jumping to the solution
Tip 3 : Study your project deeply and make sure to know all the aspects of your project.
It was a technical plus HR round. There was two interviewer present during the interview.



A palindrome is a word, number, phrase, or other sequences of characters which read the same backwards and forwards.
If the input string happens to be, "malayalam" then as we see that this word can be read the same as forward and backwards, it is said to be a valid palindrome.
The expected output for this example will print, 'true'.
Tip 1 : Practice solving the coding questions on a notepad before the actual interview
Tip 2 : Be confident and focus on your communications
Tip 3 : Prepare for the behavioural questions
Tell me about yourself.
Tell me about the most challenging project.
Tell me about the basic pillars of OOPs.
Why do I want to join this company?
Why should we hire you?
Tip 1: Be well versed with your resume
Tip 2 : Be confident and focus on your communications
Tip 3 : Prepare for the behavioural questions

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?