Tip 1 : You need to have a great aptitude for knowledge
Tip 2 : Solve questions from previously asked coding questions
Tip 3 : Add atleast 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
This was MCQ based round on the topics like Aptitude, Coding, and English skills.



The program takes two integers from the user (a base number and an exponent) and calculates the power.
For example: In the case of 23
2 is the base number
3 is the exponent
And, the power is equal to 2*2*2
Tip 1: Practice coding questions based on arrays, numbers, and strings
Tip 2: Try to cover all the edge cases.
This was a technical round in which the interviewer has given a program to code in the code editor.



The Fibonacci numbers are the numbers in the following integer sequence.
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ……..
In mathematical terms, the sequence Fn of Fibonacci numbers is defined by the recurrence relation
Fn = Fn-1 + Fn-2
with seed values
F0 = 0 and F1 = 1.
Examples:
Input : n = 2
Output : 1
Input : n = 9
Output : 34
Tip 1 : Try to cover all the edge cases while running the code
Tip 2 : Practice coding questions on online platforms like leetcode, geeks for geeks
This was an HR round.
Tell me about yourself
What are my strengths and weakness
Will you leave this company for better pay what are acid properties?
Am I ready to relocate to any location in India
Tell me about the most challenging project
Tell me about the basic pillars of OOPs
Tip 1 : Be well versed with your resume
Tip 2 : Be confident and focus on your communications
Tip 3 : Prepare for the behavioral questions

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