Tip 1 : Focus on logical reasoning
Tip 2 : Solve coding everyday atleast 2 questions
Tip 1 : Make updated resume and check spelling
Tip 2 : Add skills more and more
Interviewer was really good and he behave like a friend



F(n) = F(n - 1) + F(n - 2),
Where, F(1) = 1, F(2) = 1
"Indexing is start from 1"
Input: 6
Output: 8
Explanation: The number is ‘6’ so we have to find the “6th” Fibonacci number.
So by using the given formula of the Fibonacci series, we get the series:
[ 1, 1, 2, 3, 5, 8, 13, 21]
So the “6th” element is “8” hence we get the output.
First I have explaine about what is Fibonnaci and also give example 0 1 1 2 3 5 8 13 and I have write code in Java language



Two strings are said to be a permutation of each other when either of the string's characters can be rearranged so that it becomes identical to the other one.
Example:
str1= "sinrtg"
str2 = "string"
The character of the first string(str1) can be rearranged to form str2 and hence we can say that the given strings are a permutation of each other.
What I have explaine what is anagram and then I have write code
HR round
1: Tell me a little about yourself
2: why you are interested in It sector?
3: who was the coding round interview?

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