Tip 1 : learn to explain your thoughts well
Tip 2 : Brush-up your basics and practice important coding problems
Tip 1 : Add atleast 2-3 projects in the resume
Tip 2 : Do not write anything incorrect on resume
DBMS Data Model
Tip 1: Prepare all the topics thoroughly
Problems were based on select query, SQL joins
Tip 1: Brush-up your SQL fundamentals
Tip 2: Practice important SQL queries
In this round Versant/SWAR test was conducted where they check your spoken English skills via a call, basically with a talking Bot. you will be given a sheet with all the round details and specific instructions to be followed.
I was asked to answer few scenario based questions mostly were related to family members.
Tip 1: Ensure your speech is loud and clear
Tip 2: Avoid grammatical errors
In this round interviewer asked me about my project, OOPS concept. Also, I was asked to write 2 SQL queries and to solve 2 coding problems.



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.
I solved using recursion function
Tell me about yourself.
Why should we hire you?
Do you have any location preference?
Tip 1: Be confident.

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?