Tip 1 : Practice Array and string questions
Tip 2 : OOPS(very Important)
Tip 3 : do at least 1 good project
Tip 1 : mention those project which you know
Tip 2 : don't put false marks
In this round their is 3 section :-
1) section1- Apptitude
2) section2:- Sql query
3) section3- coding



created new array and put last data into first and so on.
Technical Round



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.
just use function fibo(n)+fibo(n-1);
HR round( There is 2 interviewer in the panel and both are nice).
1)Introduce yourself
2) Your weakness
3)your strength
4)Where you see yourself after 5 years.
Tip 1 : follow indiabix website and their is hr section you get all answers.

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?