Tip 1 : Well prepare for AMCAT test.
Tip 2 : When it comes to technical round main important thing is Confident, so be confident and we'll prepared for programming concepts, well practiced for different types of programs and code snippets and your project you should know it well.
Tip 3 : For HR Round be confident and answer the questions well, they will check just body language and confidence, it will be just 10-15min round and HR will ask just about your personal questions like "tell me about your self", "are you fine with PAN India for relocation and all" "what you want to become leader or follower" etc. So my tip in this round is just answer well to HR and confidence and eye contact with interviewer should have and all d best:)
Tip 1 : Make resume very short like 1page and max 2page resume.
Tip 2 : Go through your resume verify every detail from projects to your achievements , skills and personal info and be prepared for questions like "tell me about yourself which is not in resume".



Input: ‘str1’ = “abcjklp” , ‘str2’ = “acjkp”.
Output: 3
Explanation: The longest common substring between ‘str1’ and ‘str2’ is “cjk”, of length 3.
First used the brute force to obtain the solution and then optimised the solution
It was a SWAR round which is a telephonic round conducted by AMCAT team.
You have three mislabeled jars. The first jar contains apples, the second contains oranges, and the third contains a mix of apples and oranges. You need to label the jars. You can pick as many fruits as you want from each jar. What is the least number of fruits you have to pick from each jar to label them correctly?
Tip 1 : Focus on the speaker
Tip 2 : Catch the words properly
Tip 3 : Listen the conversation clearly
It was a face to face Technical interview on java.



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.
Step1 : First I stored string in a string variable name "original"
Step2 : Declared for loop to reverse the stored string character by character using "charAt(i)" here "i" is a integer variable defined in for loop for iteration purpose
Step3 : In for loop used logic as reverse = reverse + original (charAt(i)) here reverse is a string variable.



fib(0) = 0
fib(1) = 1
fib(n) = fib(n-1) + fib(n-2), n >= 2, where fib(n) represents the nth fibonacci number.
Just used the brute forced first to obtain the solution and then optimised the solution.
Face to Face HR Interview
Tell me about your education background?
What made you interested in this field?
Explain the key features of your project?
Tip 1 : Be confident
Tip 2 : Answer well all the 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?