Tip 1 : Solve coding questions on daily basis
Tip 2 : start giving interview as early as possible
Tip 3 : Write down the questions being asked in interview
Tip 1 : Resume should be focused on a particular profile
Tip 2 : Should mention good project experience
Mainly mcqs and some coding questions
Questions were based on Python and AWS.
Number Of MCQs - 20



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.
Introduction and some python questions



A palindrome is a word, number, phrase, or other sequences of characters which read the same backwards and forwards.
If the input string happens to be, "malayalam" then as we see that this word can be read the same as forward and backwards, it is said to be a valid palindrome.
The expected output for this example will print, 'true'.
Used default python function to store the reverse and then checked if both are same or not
Questions related to cloud deployments and all
How will you scale a project in AWS?
Tip 1 : focus on load balancing
Tip 2 : focus on auto scaling groups
Tip 3 : focus on log monitoring
Mainly discussed the future goals and expectations from the company
Work experience and company culture.
Future expectations and growth opportunities
Tip 1 : Talk about your expectations
Tip 2 : talk about what the company can give you
Tip 3 : Don't discuss about money

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